Home
last modified time | relevance | path

Searched refs:exe_path (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DPath.inc187 char exe_path[MAXPATHLEN];
188 uint32_t size = sizeof(exe_path);
189 if (_NSGetExecutablePath(exe_path, &size) == 0) {
191 if (realpath(exe_path, link_path))
199 char exe_path[PATH_MAX];
201 if (elf_aux_info(AT_EXECPATH, exe_path, sizeof(exe_path)) == 0)
202 return exe_path;
222 if (getprogpath(exe_path, argv0) != NULL)
223 return exe_path;
227 char exe_path[PATH_MAX];
[all …]
/third_party/musl/porting/linux/user/ldso/
Dns_config.c477 static int config_parse(const char *file_path, const char *exe_path) in config_parse() argument
481 if (!exe_path) return -1; in config_parse()
482 g_configor.exe_path = ld_strdup(exe_path); in config_parse()
507 if (!strcmp(paths->strs[j], exe_path)) break; in config_parse()
676 if (g_configor.exe_path) { in configor_free()
677 __libc_free(g_configor.exe_path); in configor_free()
678 g_configor.exe_path = NULL; in configor_free()
Dns_config.h51 char *exe_path; member
58 int (*parse)(const char *file_path, const char *exe_path);
/third_party/musl/ldso/linux/
Dns_config.c477 static int config_parse(const char *file_path, const char *exe_path) in config_parse() argument
481 if (!exe_path) return -1; in config_parse()
482 g_configor.exe_path = ld_strdup(exe_path); in config_parse()
507 if (!strcmp(paths->strs[j], exe_path)) break; in config_parse()
676 if (g_configor.exe_path) { in configor_free()
677 __libc_free(g_configor.exe_path); in configor_free()
678 g_configor.exe_path = NULL; in configor_free()
Dns_config.h51 char *exe_path; member
58 int (*parse)(const char *file_path, const char *exe_path);
/third_party/node/deps/v8/src/base/debug/
Dstack_trace_win.cc83 wchar_t exe_path[MAX_PATH]; in InitializeSymbols() local
84 GetModuleFileName(nullptr, exe_path, MAX_PATH); in InitializeSymbols()
85 std::wstring exe_path_wstring(exe_path); in InitializeSymbols()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc156 char exe_path[MAXPATHLEN];
157 uint32_t size = sizeof(exe_path);
158 if (_NSGetExecutablePath(exe_path, &size) == 0) {
160 if (realpath(exe_path, link_path))
166 char exe_path[PATH_MAX];
168 if (getprogpath(exe_path, argv0) != NULL)
169 return exe_path;
171 char exe_path[MAXPATHLEN];
175 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
177 return std::string(exe_path, len);
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/
Dgenerate_parser_tools.py20 exe_path = os.path.join(sys.path[0], '..', '..', '..', 'tools', 'flex-bison', platform)
22 return os.path.join(exe_path, tool_name)
/third_party/gn/src/gn/
Dninja_build_writer.cc58 base::FilePath exe_path = GetExePath(); in GetSelfInvocationCommandLine() local
60 exe_path = MakeAbsoluteFilePathRelativeIfPossible(build_path, exe_path); in GetSelfInvocationCommandLine()
62 base::CommandLine cmdline(exe_path.NormalizePathSeparatorsTo('/')); in GetSelfInvocationCommandLine()
Dsetup.cc297 base::FilePath exe_path(SysMultiByteTo16(python_path)); in PythonBatToExe() local
300 if (base::PathExists(exe_path)) in PythonBatToExe()
301 return exe_path; in PythonBatToExe()