Home
last modified time | relevance | path

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

/external/llvm/tools/bugpoint/
DToolRunner.cpp86 static int RunProgramRemotelyWithTimeout(StringRef RemoteClientPath, in RunProgramRemotelyWithTimeout() argument
105 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, 0, in RunProgramRemotelyWithTimeout()
758 if (RemoteClientPath.empty()) in ExecuteProgram()
761 ProgramArgs.push_back(RemoteClientPath.c_str()); in ExecuteProgram()
800 if (RemoteClientPath.empty()) { in ExecuteProgram()
816 return RunProgramRemotelyWithTimeout(RemoteClientPath, in ExecuteProgram()
915 std::string RemoteClientPath; in create() local
917 RemoteClientPath = sys::FindProgramByName(RemoteClient); in create()
920 return new GCC(GCCPath, RemoteClientPath, Args); in create()
DToolRunner.h40 std::string RemoteClientPath; // The path to the rsh / ssh executable. variable
44 : GCCPath(gccPath), RemoteClientPath(RemotePath) { in GCC()