Home
last modified time | relevance | path

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

/aosp_15_r20/external/llvm/tools/bugpoint/
H A DToolRunner.cpp78 static int RunProgramRemotelyWithTimeout(StringRef RemoteClientPath, in RunProgramRemotelyWithTimeout() argument
88 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, nullptr, in RunProgramRemotelyWithTimeout()
742 if (RemoteClientPath.empty()) in ExecuteProgram()
745 ProgramArgs.push_back(RemoteClientPath.c_str()); in ExecuteProgram()
784 if (RemoteClientPath.empty()) { in ExecuteProgram()
800 return RunProgramRemotelyWithTimeout(RemoteClientPath, in ExecuteProgram()
900 std::string RemoteClientPath; in create() local
908 RemoteClientPath = *Path; in create()
912 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()