Searched refs:ExeName (Results 1 – 4 of 4) sorted by relevance
136 char ExeName[PATH_MAX+1]; in checkForOProfileProcEntry() local140 ssize_t NumRead = read(CmdLineFD, ExeName, PATH_MAX+1); in checkForOProfileProcEntry()144 if (ExeName[0] != '/') { in checkForOProfileProcEntry()145 BaseName = ExeName; in checkForOProfileProcEntry()149 while (Idx < NumRead-1 && ExeName[Idx] != 0) { in checkForOProfileProcEntry()158 if (ExeName[Idx] == '/') { in checkForOProfileProcEntry()159 BaseName = ExeName + Idx + 1; in checkForOProfileProcEntry()
74 bool runCommandsInFile(const char *ExeName, std::string const &FileName, in runCommandsInFile() argument78 llvm::errs() << ExeName << ": cannot open " << FileName << ": " in runCommandsInFile()
185 ErrorOr<std::string> FindProgramByName(const std::string &ExeName,
204 ErrorOr<std::string> llvm::FindProgramByName(const std::string &ExeName, in FindProgramByName() argument212 if (ErrorOr<std::string> Path = sys::findProgramByName(ExeName, Result)) in FindProgramByName()216 return sys::findProgramByName(ExeName); in FindProgramByName()