Home
last modified time | relevance | path

Searched refs:ExePath (Results 1 – 6 of 6) sorted by relevance

/openbsd/src/gnu/llvm/lldb/source/Host/linux/
DHost.cpp172 std::string ExePath(PATH_MAX, '\0'); in GetExePathAndArch() local
178 ssize_t len = readlink(ProcExe.c_str(), &ExePath[0], PATH_MAX); in GetExePathAndArch()
180 ExePath.resize(len); in GetExePathAndArch()
184 ExePath.resize(0); in GetExePathAndArch()
188 llvm::StringRef PathRef = ExePath; in GetExePathAndArch()
/openbsd/src/gnu/llvm/llvm/tools/dsymutil/
DCFBundle.cpp147 CFBundleInfo getBundleInfo(StringRef ExePath) { in getBundleInfo() argument
156 << ", but it should be a string in: " << ExePath << ".\n"; in getBundleInfo()
159 CFBundle Bundle(ExePath); in getBundleInfo()
DCFBundle.h25 CFBundleInfo getBundleInfo(llvm::StringRef ExePath);
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
DNativeSession.cpp131 static Expected<std::string> getPdbPathFromExe(StringRef ExePath) { in getPdbPathFromExe() argument
133 object::createBinary(ExePath); in getPdbPathFromExe()
150 Error NativeSession::createFromExe(StringRef ExePath, in createFromExe() argument
152 Expected<std::string> PdbPath = getPdbPathFromExe(ExePath); in createFromExe()
174 Expected<std::string> PathOrErr = getPdbPathFromExe(Opts.ExePath); in searchForPdb()
184 SmallString<128> PdbPath = StringRef(Opts.ExePath); in searchForPdb()
/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeSession.h34 StringRef ExePath; member
/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp311 ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath, in lookUpDsymFile() argument
317 StringRef Filename = sys::path::filename(ExePath); in lookUpDsymFile()
319 getDarwinDWARFResourceForPath(ExePath, std::string(Filename))); in lookUpDsymFile()