Home
last modified time | relevance | path

Searched refs:ExeName (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp137 char ExeName[PATH_MAX+1]; in checkForOProfileProcEntry() local
141 ssize_t NumRead = read(CmdLineFD, ExeName, PATH_MAX+1); in checkForOProfileProcEntry()
145 if (ExeName[0] != '/') { in checkForOProfileProcEntry()
146 BaseName = ExeName; in checkForOProfileProcEntry()
150 while (Idx < NumRead-1 && ExeName[Idx] != 0) { in checkForOProfileProcEntry()
159 if (ExeName[Idx] == '/') { in checkForOProfileProcEntry()
160 BaseName = ExeName + Idx + 1; in checkForOProfileProcEntry()
/freebsd-12.1/contrib/llvm/tools/bugpoint/
H A DToolRunner.h186 ErrorOr<std::string> FindProgramByName(const std::string &ExeName,
H A DToolRunner.cpp205 ErrorOr<std::string> llvm::FindProgramByName(const std::string &ExeName, in FindProgramByName() argument
213 if (ErrorOr<std::string> Path = sys::findProgramByName(ExeName, Result)) in FindProgramByName()
217 return sys::findProgramByName(ExeName); in FindProgramByName()