Searched refs:exe_path (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHostInfoFreeBSD.cpp67 char exe_path[PATH_MAX]; local
68 size_t exe_path_size = sizeof(exe_path);
69 if (sysctl(exe_path_mib, 4, exe_path, &exe_path_size, NULL, 0) == 0)
70 g_program_filespec.SetFile(exe_path, FileSpec::Style::native);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A 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;
217 if (getprogpath(exe_path, argv0) != NULL)
218 return exe_path;
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp181 char exe_path[PATH_MAX]; local
182 launch_info.GetExecutableFile().GetPath(exe_path, sizeof(exe_path));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp74 char exe_path[PATH_MAX]; local
81 resolved_module_spec.GetFileSpec().GetPath(exe_path, sizeof(exe_path));
82 resolved_module_spec.GetFileSpec().SetFile(exe_path,
126 exe_path);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cpp438 InternalScopedString exe_path(kMaxPathLength);
439 uint32_t size = exe_path.size();
440 if (_NSGetExecutablePath(exe_path.data(), &size) == 0 &&
441 realpath(exe_path.data(), buf) != 0) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp972 llvm::SmallString<128> exe_path; variable
973 m_options.launch_info.GetExecutableFile().GetPath(exe_path); variable
974 if (!exe_path.empty())
975 m_options.launch_info.GetArguments().AppendArgument(exe_path); variable
H A DCommandObjectTarget.cpp65 char exe_path[PATH_MAX]; local
68 exe_valid = exe_module->GetFileSpec().GetPath(exe_path, sizeof(exe_path));
71 ::strcpy(exe_path, "<none>");
74 exe_path);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp777 std::string exe_path; local
781 exe_path = exe_file.GetPath(false);
785 exe_path = arg;
787 if (!exe_path.empty()) {
788 argv.push_back(exe_path.c_str());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp111 loadMatchingPDBFile(std::string exe_path, llvm::BumpPtrAllocator &allocator) { argument
114 auto expected_binary = createBinary(exe_path);

Completed in 425 milliseconds