Lines Matching defs:Cmd
237 Command Cmd(BaseCmd);
238 Cmd.setOutputFile(Log);
239 Cmd.combineOutAndErr();
241 std::string CommandLine = Cmd.toString();
244 int ExitCode = ExecuteCommand(Cmd);
278 std::string Cmd;
282 Cmd += S + " ";
284 return Cmd;
291 Command Cmd(Args);
292 Cmd.removeFlag("jobs");
293 Cmd.removeFlag("workers");
299 V[i] = std::thread(WorkerThread, std::ref(Cmd), &Counter, NumJobs,
365 Command Cmd(Args);
366 Cmd.removeFlag("cleanse_crash");
368 assert(Cmd.hasArgument(InputFilePath));
369 Cmd.removeArgument(InputFilePath);
372 Cmd.addArgument(TmpFilePath);
373 Cmd.setOutputFile(getDevNull());
374 Cmd.combineOutAndErr();
394 auto ExitCode = ExecuteCommand(Cmd);
438 Command Cmd(BaseCmd);
439 Cmd.addArgument(CurrentFilePath);
441 Printf("CRASH_MIN: executing: %s\n", Cmd.toString().c_str());
443 bool Success = ExecuteCommand(Cmd, &CmdOutput);
459 Cmd.addFlag("minimize_crash_internal_step", "1");
460 Cmd.addFlag("exact_artifact_path", ArtifactPath);
461 Printf("CRASH_MIN: executing: %s\n", Cmd.toString().c_str());
463 Success = ExecuteCommand(Cmd, &CmdOutput);