Home
last modified time | relevance | path

Searched refs:RemoteClientPath (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp74 StringRef RemoteClientPath, ArrayRef<StringRef> Args, StringRef StdInFile, in RunProgramRemotelyWithTimeout() argument
80 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, None, Redirects, in RunProgramRemotelyWithTimeout()
701 if (RemoteClientPath.empty()) in ExecuteProgram()
704 ProgramArgs.push_back(RemoteClientPath); in ExecuteProgram()
743 if (RemoteClientPath.empty()) { in ExecuteProgram()
760 return RunProgramRemotelyWithTimeout(RemoteClientPath, ProgramArgs, in ExecuteProgram()
853 std::string RemoteClientPath; in create() local
861 RemoteClientPath = *Path; in create()
865 return new CC(*CCPath, RemoteClientPath, Args); in create()
H A DToolRunner.h40 std::string RemoteClientPath; // The path to the rsh / ssh executable. variable
44 : CCPath(ccPath), RemoteClientPath(RemotePath) { in CC()