Home
last modified time | relevance | path

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

/external/llvm/tools/bugpoint/
DToolRunner.cpp77 static int RunProgramRemotelyWithTimeout(StringRef RemoteClientPath, in RunProgramRemotelyWithTimeout() argument
87 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, nullptr, in RunProgramRemotelyWithTimeout()
741 if (RemoteClientPath.empty()) in ExecuteProgram()
744 ProgramArgs.push_back(RemoteClientPath.c_str()); in ExecuteProgram()
783 if (RemoteClientPath.empty()) { in ExecuteProgram()
799 return RunProgramRemotelyWithTimeout(RemoteClientPath, in ExecuteProgram()
899 std::string RemoteClientPath; in create() local
907 RemoteClientPath = *Path; in create()
911 return new CC(*CCPath, RemoteClientPath, Args); in create()
DToolRunner.h40 std::string RemoteClientPath; // The path to the rsh / ssh executable. variable
44 : CCPath(ccPath), RemoteClientPath(RemotePath) { in CC()