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
66 cl::desc("<program to run>"));
68 cl::desc("<program arguments>..."));
221 /// @brief Find program using shell lookup rules.
222 /// @param Program This is either an absolute path, relative path, or simple a
223 /// program name. Look in PATH for any programs that match. If no
225 /// @return If ec == errc::success, The absolute path to the program. Otherwise
227 static std::string FindProgram(const std::string &Program,
232 // Check for the program without an extension (in case it already has one).
244 Program.c_str(),
323 errs() << ToolName << ": Failed to find program: '" << CommandLine
329 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n';
339 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n'
364 errs() << ToolName << ": Failed to run program: '" << ProgramToRun << "': "
377 // Run the program under the debugger until either it exits, or throws an
438 errs() << ToolName << ": Failed to wait for debug event in program: '"
490 // Program is loading user32.dll, in the applications we are testing,
492 // already been printed, so simply close the program.
496 "program to prevent message box from popping up.\n";
549 errs() << ToolName << ": Failed to continue debugging program: '"