Home
last modified time | relevance | path

Searched refs:exec_path (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Mac/Tools/
Dpythonw.c150 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/
Dpythonw.c156 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/
Drun_tests.sh87 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/llvm-project/libcxx/utils/libcxx/
Dcompiler.py168 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/android/test/
Dformat.py57 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/libcxx/utils/libcxx/test/
Dformat.py171 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/
Dprocess.c474 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/
Dintel_dp_compliance.c966 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/
Drpc_utils.py585 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/
Dgrowfiles.c390 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()
Ddoio.c650 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()