/external/v8/src/base/ |
D | file-utils.cc | 15 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()
|
D | file-utils.h | 15 V8_BASE_EXPORT char* RelativePath(char** buffer, const char* exec_path,
|
/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 | 153 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/ |
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/autotest/client/site_tests/graphics_Gralloc/ |
D | graphics_Gralloc.py | 49 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/ |
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/v8/src/ |
D | icu_util.cc | 44 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()
|
D | icu_util.h | 19 bool InitializeICUDefaultLocation(const char* exec_path,
|
D | api.cc | 6076 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/ |
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()
|
/external/v8/include/ |
D | v8.h | 8494 static bool InitializeICUDefaultLocation(const char* exec_path,
|