Lines Matching refs:args
24 def execute_adlt_command(args):
26 args.adlt_exe,
27 f'--root-dir={args.adlt_root_dir}',
29 args.output_file,
30 args.allowed_lib_list,
42 def remove_origin_lib(args):
43 with open(args.allowed_lib_list, 'r') as f:
46 so_abspath = os.path.join(args.adlt_root_dir, line.strip("\n"))
57 args = parser.parse_args(argv)
58 if not os.path.exists(args.output_file):
59 execute_adlt_command(args)
60 remove_origin_lib(args)