Home
last modified time | relevance | path

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

/external/v8/src/base/
Dfile-utils.cc15 char* RelativePath(char** buffer, const char* exec_path, const char* name) { in RelativePath() argument
16 DCHECK(exec_path); in RelativePath()
17 int path_separator = static_cast<int>(strlen(exec_path)) - 1; in RelativePath()
19 !OS::isDirectorySeparator(exec_path[path_separator])) { in RelativePath()
27 strncat(*buffer, exec_path, path_separator + 1); in RelativePath()
Dfile-utils.h15 V8_BASE_EXPORT char* RelativePath(char** buffer, const char* exec_path,
/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.c153 char* exec_path = get_python_path(); in main() local
208 argv[0] = exec_path; in main()
218 posix_spawn(NULL, exec_path, NULL, in main()
220 err(1, "posix_spawn: %s", exec_path); in main()
223 execve(exec_path, argv, environ); in main()
/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/autotest/client/site_tests/graphics_Gralloc/
Dgraphics_Gralloc.py49 exec_path = os.path.join(_EXEC_DIR, binary)
50 arc._android_shell('mv %s %s' % (sdcard_path, exec_path))
51 arc._android_shell('chmod o+rwx %s' % (exec_path))
52 self._executables.append(exec_path)
/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/v8/src/
Dicu_util.cc44 bool InitializeICUDefaultLocation(const char* exec_path, in InitializeICUDefaultLocation() argument
55 base::RelativePath(&icu_data_file_default, exec_path, "icudtl.dat"); in InitializeICUDefaultLocation()
57 base::RelativePath(&icu_data_file_default, exec_path, "icudtb.dat"); in InitializeICUDefaultLocation()
Dicu_util.h19 bool InitializeICUDefaultLocation(const char* exec_path,
Dapi.cc6076 bool v8::V8::InitializeICUDefaultLocation(const char* exec_path, in InitializeICUDefaultLocation() argument
6078 return i::InitializeICUDefaultLocation(exec_path, icu_data_file); in InitializeICUDefaultLocation()
/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()
/external/v8/include/
Dv8.h8494 static bool InitializeICUDefaultLocation(const char* exec_path,