Searched refs:execargs (Results 1 – 5 of 5) sorted by relevance
/external/toolchain-utils/binary_search_tool/ |
D | bisect_driver.py | 87 def log_to_file(path, execargs, link_from=None, link_to=None): argument 94 log.write('cd: %s; %s\n' % (os.getcwd(), ' '.join(execargs))) 99 def exec_and_return(execargs): argument 105 return subprocess.call(execargs) 131 def get_obj_path(execargs): argument 140 i = execargs.index('-o') 141 _ = execargs.index('-c') 145 obj_path = execargs[i + 1] 165 def get_dep_path(execargs): argument 172 if '-MD' not in execargs and '-MMD' not in execargs: [all …]
|
D | compiler_wrapper.py | 51 execargs = [WRAPPED] + sys.argv[1:] 53 if BISECT_STAGE not in bisect_driver.VALID_MODES or '-o' not in execargs: 57 for idx, _ in enumerate(execargs): 60 while execargs[idx][0] == '@': 61 args_in_file = ProcessArgFile(execargs[idx][1:]) 62 execargs = execargs[0:idx] + args_in_file + execargs[idx + 1:] 64 bisect_driver.bisect_driver(BISECT_STAGE, BISECT_DIR, execargs)
|
/external/clang/ |
D | compiler_wrapper | 23 execargs = [] variable 27 execargs += [gomacc] 29 execargs += [real_compiler] + myargs 31 os.execv(argv0, execargs)
|
/external/toolchain-utils/compiler_wrapper/ |
D | bisect_flag.go | 32 execargs = ExpandArgs(sys.argv[3:], []) 34 sys.exit(bisect_driver.bisect_driver(stage, dir, execargs))
|
D | bisect_flag_test.go | 152 def bisect_driver(self, bisect_stage, bisect_dir, execargs): 156 for arg in execargs:
|