/third_party/node/deps/v8/src/base/ |
D | file-utils.cc | 16 std::unique_ptr<char[]> RelativePath(const char* exec_path, const char* name) { in RelativePath() argument 17 DCHECK(exec_path); in RelativePath() 18 size_t basename_start = strlen(exec_path); in RelativePath() 20 !OS::isDirectorySeparator(exec_path[basename_start - 1])) { in RelativePath() 25 if (basename_start > 0) memcpy(buffer.get(), exec_path, basename_start); in RelativePath()
|
D | file-utils.h | 18 std::unique_ptr<char[]> RelativePath(const char* exec_path, const char* name);
|
/third_party/python/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()
|
/third_party/node/deps/v8/src/init/ |
D | icu_util.cc | 39 bool InitializeICUDefaultLocation(const char* exec_path, in InitializeICUDefaultLocation() argument 49 base::RelativePath(exec_path, "icudtl.dat"); in InitializeICUDefaultLocation() 52 base::RelativePath(exec_path, "icudtb.dat"); in InitializeICUDefaultLocation()
|
D | icu_util.h | 18 bool InitializeICUDefaultLocation(const char* exec_path,
|
/third_party/musl/scripts/build_lite/ |
D | BUILD.gn | 47 exec_path = rebase_path(target_out_dir) 49 makefile = rebase_path("Makefile", exec_path) 94 lib_out_dir = rebase_path("$root_out_dir/unstripped/usr/lib", exec_path) 103 exec_path = rebase_path(target_out_dir) 105 makefile = rebase_path("Makefile", exec_path)
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/ |
D | BUILD.gn | 16 exec_path = rebase_path(".", root_build_dir)
|
/third_party/node/src/ |
D | env.cc | 589 const std::string& exec_path = exec_path_; in GetCwd() local 590 return exec_path.substr(0, exec_path.find_last_of(kPathSeparator)); in GetCwd() 626 std::string exec_path; in GetExecPath() local 628 exec_path = std::string(exec_path_buf, exec_path_len); in GetExecPath() 630 exec_path = argv[0]; in GetExecPath() 639 uv_fs_realpath(nullptr, &req, exec_path.c_str(), nullptr)) { in GetExecPath() 641 exec_path = std::string(static_cast<char*>(req.ptr)); in GetExecPath() 646 return exec_path; in GetExecPath()
|
D | node_process_object.cc | 230 env->exec_path().c_str(), in PatchProcessObject() 232 env->exec_path().size()) in PatchProcessObject()
|
D | env-inl.h | 419 inline const std::string& Environment::exec_path() const { in exec_path() function
|
D | env.h | 602 const std::string& exec_path() const;
|
/third_party/node/deps/v8/include/ |
D | v8-initialization.h | 155 static bool InitializeICUDefaultLocation(const char* exec_path,
|
/third_party/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()
|
/third_party/nghttp2/src/ |
D | shrpx.cc | 524 auto exec_path = in exec_binary() local 527 if (!exec_path) { in exec_binary() 534 argv[0] = exec_path; in exec_binary()
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 6201 bool v8::V8::InitializeICUDefaultLocation(const char* exec_path, in InitializeICUDefaultLocation() argument 6203 return i::InitializeICUDefaultLocation(exec_path, icu_data_file); in InitializeICUDefaultLocation()
|