/external/python/cpython2/Mac/Tools/ |
D | pythonw.c | 150 char* exec_path = get_python_path(); in main() local 158 argv[0] = exec_path; in main() 170 posix_spawn(NULL, exec_path, NULL, in main() 172 err(1, "posix_spawn: %s", exec_path); in main() 175 execve(exec_path, argv, environ); in main()
|
/external/python/cpython3/Mac/Tools/ |
D | pythonw.c | 156 char* exec_path = get_python_path(); in main() local 220 argv[0] = exec_path; in main() 231 posix_spawn(NULL, exec_path, NULL, in main() 233 err(1, "posix_spawn: %s", exec_path); in main() 236 execve(exec_path, argv, environ); in main()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | run_tests.sh | 87 exec_path=bazel-bin/$(echo $test_path | cut -c 3-) 88 ADB push "$exec_path" $OPENCL_DIR 98 exec_path=bazel-bin/$(echo $test_path | cut -c 3-) 99 ADB push "$exec_path" $OPENCL_DIR > /dev/null 2>&1
|
/external/libcxx/utils/libcxx/android/test/ |
D | format.py | 57 def _clean(self, exec_path): argument 58 exec_file = os.path.basename(exec_path) 62 os.remove(exec_path) 66 def _run(self, exec_path, _, in_dir=None): argument
|
/external/llvm-project/libcxx/utils/libcxx/ |
D | compiler.py | 168 def link(self, source_files, exec_path=None, flags=[], cwd=None): argument 169 cmd = self.linkCmd(source_files, exec_path, flags) 172 cs_cmd, cs_out, cs_err, cs_rc = self.codesign(exec_path, cwd) 177 def compileLink(self, source_files, exec_path=None, flags=[], argument 179 cmd = self.compileLinkCmd(source_files, exec_path, flags) 182 cs_cmd, cs_out, cs_err, cs_rc = self.codesign(exec_path, cwd) 187 def codesign(self, exec_path, cwd=None): argument 189 if not exec_path: 194 cmd = ['xcrun', 'codesign', '-s', codesign_ident, exec_path] 215 object_file, exec_path=out, flags=flags, cwd=cwd)
|
/external/libcxx/utils/libcxx/test/ |
D | format.py | 171 def _clean(self, exec_path): # pylint: disable=no-self-use argument 172 libcxx.util.cleanFile(exec_path) 178 exec_path = tmpBase + '.exe' 185 source_path, out=exec_path, object_file=object_path, 206 cmd, out, err, rc = self.executor.run(exec_path, [exec_path], 223 self._clean(exec_path)
|
/external/libcups/scheduler/ |
D | process.c | 474 const char *exec_path = command; /* Command to be exec'd */ in cupsdStartProcess() local 579 exec_path = cups_exec; in cupsdStartProcess() 640 if (posix_spawn(pid, exec_path, &actions, &attrs, argv, envp ? envp : environ)) in cupsdStartProcess() 794 execve(exec_path, argv, envp); in cupsdStartProcess() 796 execv(exec_path, argv); in cupsdStartProcess()
|
/external/igt-gpu-tools/tools/ |
D | intel_dp_compliance.c | 966 char *exec_path = NULL; in enter_exec_path() local 972 exec_path = (char *) malloc(len_path); in enter_exec_path() 974 memcpy(exec_path, argv[0], len_path); in enter_exec_path() 975 pos = strrchr(exec_path, '/'); in enter_exec_path() 979 ret = chdir(exec_path); in enter_exec_path() 981 free(exec_path); in enter_exec_path()
|
/external/autotest/frontend/afe/ |
D | rpc_utils.py | 585 def _common_entry_to_dict(entry, type, job_dict, exec_path, status, started_on): argument 589 execution_path=exec_path, 616 exec_path = server_utils.get_special_task_exec_path( 622 exec_path, status, task['time_started']) 628 exec_path = server_utils.get_hqe_exec_path(tag, 630 return _common_entry_to_dict(queue_entry, 'Job', job_dict, exec_path,
|
/external/ltp/testcases/kernel/fs/doio/ |
D | growfiles.c | 390 char *exec_path = NULL; in main() local 1216 if (exec_path == NULL) { in main() 1217 exec_path = argv[0]; in main() 1219 argv[0] = malloc(strlen(exec_path) + 2); in main() 1220 sprintf(argv[0], "-%s", exec_path); in main()
|
D | doio.c | 650 char *exec_path; in main() local 652 exec_path = argv[0]; in main() 653 argv[0] = malloc(strlen(exec_path) + 2); in main() 654 sprintf(argv[0], "-%s", exec_path); in main() 656 execvp(exec_path, argv); in main() 659 exec_path, SYSERR, errno); in main()
|