Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DToolRunner.cpp74 StringRef RemoteClientPath, ArrayRef<StringRef> Args, StringRef StdInFile, in RunProgramRemotelyWithTimeout() argument
80 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, None, Redirects, in RunProgramRemotelyWithTimeout()
716 if (RemoteClientPath.empty()) in ExecuteProgram()
719 ProgramArgs.push_back(RemoteClientPath); in ExecuteProgram()
758 if (RemoteClientPath.empty()) { in ExecuteProgram()
775 return RunProgramRemotelyWithTimeout(RemoteClientPath, ProgramArgs, in ExecuteProgram()
867 std::string RemoteClientPath; in create() local
875 RemoteClientPath = *Path; in create()
879 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()
/external/llvm/tools/bugpoint/
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()
DToolRunner.h40 std::string RemoteClientPath; // The path to the rsh / ssh executable. variable
44 : CCPath(ccPath), RemoteClientPath(RemotePath) { in CC()
/external/swiftshader/third_party/LLVM/tools/bugpoint/
DToolRunner.cpp89 static int RunProgramRemotelyWithTimeout(const sys::Path &RemoteClientPath, in RunProgramRemotelyWithTimeout() argument
111 int ReturnCode = sys::Program::ExecuteAndWait(RemoteClientPath, Args, in RunProgramRemotelyWithTimeout()
813 if (RemoteClientPath.isEmpty()) in ExecuteProgram()
816 ProgramArgs.push_back(RemoteClientPath.c_str()); in ExecuteProgram()
855 if (RemoteClientPath.isEmpty()) { in ExecuteProgram()
871 return RunProgramRemotelyWithTimeout(sys::Path(RemoteClientPath), in ExecuteProgram()
971 sys::Path RemoteClientPath; in create() local
973 RemoteClientPath = sys::Program::FindProgramByName(RemoteClient); in create()
976 return new GCC(GCCPath, RemoteClientPath, Args); in create()
DToolRunner.h41 sys::Path RemoteClientPath; // The path to the rsh / ssh executable. variable
45 : GCCPath(gccPath), RemoteClientPath(RemotePath) { in GCC()