Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/Support/
H A DHost.cpp397 const char *ExePath, ArrayRef<llvm::StringRef> argv, in runAndGetCommandOutput() argument
400 [ExePath, argv, &Buffer, &Size, &Success] { in runAndGetCommandOutput()
411 int RetCode = ExecuteAndWait(ExePath, argv, /*env=*/llvm::None, Redirects); in runAndGetCommandOutput()
470 const char *ExePath = "/usr/bin/oslevel"; in getAIXSystemVersion() local
471 StringRef argv[] = {ExePath}; in getAIXSystemVersion()
474 ASSERT_EQ(runAndGetCommandOutput(ExePath, argv, Buffer, Size), true); in getAIXSystemVersion()
532 const char *ExePath = "/usr/sbin/getsystype"; in TEST_F() local
533 StringRef argv[] = {ExePath, "-i"}; in TEST_F()
536 ASSERT_EQ(runAndGetCommandOutput(ExePath, argv, Buffer, Size), true); in TEST_F()
/llvm-project-15.0.7/lldb/source/Host/linux/
H A DHost.cpp171 std::string ExePath(PATH_MAX, '\0'); in GetExePathAndArch() local
177 ssize_t len = readlink(ProcExe.c_str(), &ExePath[0], PATH_MAX); in GetExePathAndArch()
179 ExePath.resize(len); in GetExePathAndArch()
183 ExePath.resize(0); in GetExePathAndArch()
187 llvm::StringRef PathRef = ExePath; in GetExePathAndArch()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A 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()
H A DCFBundle.h25 CFBundleInfo getBundleInfo(llvm::StringRef ExePath);
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A 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()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/PDB/
H A DNativeSessionTest.cpp37 std::string ExePath = getExePath(); in TEST() local
38 Expected<std::string> PdbPath = NativeSession::searchForPdb({ExePath}); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h34 StringRef ExePath; member
/llvm-project-15.0.7/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp347 ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath, in lookUpDsymFile() argument
353 StringRef Filename = sys::path::filename(ExePath); in lookUpDsymFile()
355 getDarwinDWARFResourceForPath(ExePath, std::string(Filename))); in lookUpDsymFile()