Home
last modified time | relevance | path

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

/third_party/python/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()
/third_party/cef/libcef_dll/sandbox/
Dsandbox_mac.mm21 std::unique_ptr<char[]> exec_path(new char[exec_path_size]);
22 rv = _NSGetExecutablePath(exec_path.get(), &exec_path_size);
28 sandbox::SeatbeltExecServer::CreateFromArguments(exec_path.get(), argc,
/third_party/cef/libcef_dll/wrapper/
Dcef_library_loader_mac.mm28 std::unique_ptr<char[]> exec_path(new char[exec_path_size]);
29 rv = _NSGetExecutablePath(exec_path.get(), &exec_path_size);
35 const char* parent_dir = dirname(exec_path.get());
/third_party/musl/scripts/build_lite/
DBUILD.gn47 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)
/third_party/node/src/
Dnode_process_object.cc187 env->exec_path().c_str(), in PatchProcessObject()
189 env->exec_path().size()) in PatchProcessObject()
Denv.cc309 std::string exec_path; in GetExecPath() local
311 exec_path = std::string(exec_path_buf, exec_path_len); in GetExecPath()
313 exec_path = argv[0]; in GetExecPath()
322 uv_fs_realpath(nullptr, &req, exec_path.c_str(), nullptr)) { in GetExecPath()
324 exec_path = std::string(static_cast<char*>(req.ptr)); in GetExecPath()
329 return exec_path; in GetExecPath()
Denv-inl.h703 inline const std::string& Environment::exec_path() const { in exec_path() function
719 const std::string& exec_path = exec_path_; in GetCwd() local
720 return exec_path.substr(0, exec_path.find_last_of(kPathSeparator)); in GetCwd()
Denv.h927 const std::string& exec_path() const;
/third_party/wpa_supplicant/wpa_supplicant-2.9/
DBUILD.gn16 exec_path = rebase_path(".", root_build_dir)
/third_party/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()
/third_party/nghttp2/src/
Dshrpx.cc565 auto exec_path = in exec_binary() local
568 if (!exec_path) { in exec_binary()
575 argv[0] = exec_path; in exec_binary()