Lines Matching refs:args
58 args = parser.parse_args()
60 if args.enable:
61 if args.enable[0] == 'false':
64 if args.path:
66 os.chdir(args.path)
68 if args.prebuilts:
69 status = cmd_exec(args.prebuilts, temp_file, args.out_dir[0])
72 if args.command:
73 if '&&' in args.command:
74 command = args.command.split('&&')
76 status = cmd_exec(data, temp_file, args.out_dir[0])
80 status = cmd_exec(args.command, temp_file, args.out_dir[0])
84 copyfile(temp_file.name, args.target_dir[0])