Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileWrapper.cpp136 char ExeName[PATH_MAX+1]; in checkForOProfileProcEntry() local
140 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()
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.h185 ErrorOr<std::string> FindProgramByName(const std::string &ExeName,
H A DToolRunner.cpp204 ErrorOr<std::string> llvm::FindProgramByName(const std::string &ExeName, in FindProgramByName() argument
212 if (ErrorOr<std::string> Path = sys::findProgramByName(ExeName, Result)) in FindProgramByName()
216 return sys::findProgramByName(ExeName); in FindProgramByName()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp9214 class ExeName : public ComposableParserImpl<ExeName> { class
9224 ExeName() : m_name( std::make_shared<std::string>( "<executable>" ) ) {} in ExeName() function in Catch::clara::detail::ExeName
9226 explicit ExeName( std::string &ref ) : ExeName() { in ExeName() function in Catch::clara::detail::ExeName
9231 explicit ExeName( LambdaT const& lambda ) : ExeName() { in ExeName() function in Catch::clara::detail::ExeName
9407 mutable ExeName m_exeName;
9411 auto operator|=( ExeName const &exeName ) -> Parser & { in operator |=()
9581 using detail::ExeName;
9728 = ExeName( config.processName ) in makeCommandLineParser()