Home
last modified time | relevance | path

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

/external/llvm-project/llvm/unittests/Support/
DHost.cpp289 const char *ExePath, ArrayRef<llvm::StringRef> argv, in runAndGetCommandOutput() argument
292 [ExePath, argv, &Buffer, &Size, &Success] { in runAndGetCommandOutput()
303 int RetCode = ExecuteAndWait(ExePath, argv, /*env=*/llvm::None, Redirects); in runAndGetCommandOutput()
367 const char *ExePath = "/usr/bin/oslevel"; in TEST_F() local
368 StringRef argv[] = {ExePath}; in TEST_F()
371 ASSERT_EQ(runAndGetCommandOutput(ExePath, argv, Buffer, Size), true); in TEST_F()
/external/llvm-project/lldb/source/Host/linux/
DHost.cpp164 std::string ExePath(PATH_MAX, '\0'); in GetExePathAndArch() local
170 ssize_t len = readlink(ProcExe.c_str(), &ExePath[0], PATH_MAX); in GetExePathAndArch()
172 ExePath.resize(len); in GetExePathAndArch()
176 ExePath.resize(0); in GetExePathAndArch()
180 llvm::StringRef PathRef = ExePath; in GetExePathAndArch()
/external/llvm-project/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);
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeSession.cpp123 static Expected<std::string> getPdbPathFromExe(StringRef ExePath) { in getPdbPathFromExe() argument
125 object::createBinary(ExePath); in getPdbPathFromExe()
142 Error NativeSession::createFromExe(StringRef ExePath, in createFromExe() argument
144 Expected<std::string> PdbPath = getPdbPathFromExe(ExePath); in createFromExe()
166 Expected<std::string> PathOrErr = getPdbPathFromExe(Opts.ExePath); in searchForPdb()
176 SmallString<128> PdbPath = StringRef(Opts.ExePath); in searchForPdb()
/external/swiftshader/tests/regres/cov/
Dimport.go47 ExePath string // path to the executable binary member
109 e.ExePath,
132 data, err := exec.Command(e.TurboCov, e.ExePath, profdata).Output()
/external/llvm-project/llvm/unittests/DebugInfo/PDB/
DNativeSessionTest.cpp35 std::string ExePath = getExePath(); in TEST() local
36 Expected<std::string> PdbPath = NativeSession::searchForPdb({ExePath}); in TEST()
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp242 ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath, in lookUpDsymFile() argument
247 StringRef Filename = sys::path::filename(ExePath); in lookUpDsymFile()
248 DsymPaths.push_back(getDarwinDWARFResourceForPath(ExePath, Filename)); in lookUpDsymFile()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp362 ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath, in lookUpDsymFile() argument
367 StringRef Filename = sys::path::filename(ExePath); in lookUpDsymFile()
368 DsymPaths.push_back(getDarwinDWARFResourceForPath(ExePath, Filename)); in lookUpDsymFile()
/external/llvm-project/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp363 ObjectFile *LLVMSymbolizer::lookUpDsymFile(const std::string &ExePath, in lookUpDsymFile() argument
368 StringRef Filename = sys::path::filename(ExePath); in lookUpDsymFile()
370 getDarwinDWARFResourceForPath(ExePath, std::string(Filename))); in lookUpDsymFile()
/external/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeSession.h30 StringRef ExePath; member
/external/swiftshader/tests/regres/cmd/run_testlist/
Dmain.go125 ExePath: findSwiftshaderSO(icdPath),
/external/swiftshader/tests/regres/cmd/regres/
Dmain.go687 ExePath: filepath.Join(test.buildDir, "libvk_swiftshader.so"),