Home | History | Annotate | Download | only in KillTheDoctor

Lines Matching refs:Program

10 // This program provides an extremely hacky way to stop Dr. Watson from starting
13 // This simply starts the program named in the first positional argument with
15 // any unhandled exceptions thrown in the child process and close the program
64 cl::desc("<program to run>"));
66 cl::desc("<program arguments>..."));
217 /// @brief Find program using shell lookup rules.
218 /// @param Program This is either an absolute path, relative path, or simple a
219 /// program name. Look in PATH for any programs that match. If no
221 /// @return If ec == errc::success, The absolute path to the program. Otherwise
223 static std::string FindProgram(const std::string &Program, error_code &ec) {
227 // Check for the program without an extension (in case it already has one).
239 Program.c_str(),
318 errs() << ToolName << ": Failed to find program: '" << CommandLine
324 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n';
334 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n'
359 errs() << ToolName << ": Failed to run program: '" << ProgramToRun
372 // Run the program under the debugger until either it exits, or throws an
432 errs() << ToolName << ": Failed to wait for debug event in program: '"
484 // Program is loading user32.dll, in the applications we are testing,
486 // already been printed, so simply close the program.
490 "program to prevent message box from popping up.\n";
543 errs() << ToolName << ": Failed to continue debugging program: '"