Home | History | Annotate | Download | only in fuzzer

Lines Matching defs:Cmd

216     Command Cmd(BaseCmd);
217 Cmd.setOutputFile(Log);
218 Cmd.combineOutAndErr();
220 std::string CommandLine = Cmd.toString();
223 int ExitCode = ExecuteCommand(Cmd);
235 std::string Cmd;
239 Cmd += S + " ";
241 return Cmd;
248 Command Cmd(Args);
249 Cmd.removeFlag("jobs");
250 Cmd.removeFlag("workers");
255 V.push_back(std::thread(WorkerThread, std::ref(Cmd), &Counter, NumJobs, &HasErrors));
313 Command Cmd(Args);
314 Cmd.removeFlag("cleanse_crash");
316 assert(Cmd.hasArgument(InputFilePath));
317 Cmd.removeArgument(InputFilePath);
323 Cmd.addArgument(TmpFilePath);
324 Cmd.setOutputFile(LogFilePath);
325 Cmd.combineOutAndErr();
345 auto ExitCode = ExecuteCommand(Cmd);
393 Command Cmd(BaseCmd);
394 Cmd.addArgument(CurrentFilePath);
396 std::string CommandLine = Cmd.toString();
398 int ExitCode = ExecuteCommand(Cmd);
414 Cmd.addFlag("minimize_crash_internal_step", "1");
415 Cmd.addFlag("exact_artifact_path", ArtifactPath);
416 CommandLine = Cmd.toString();
418 ExitCode = ExecuteCommand(Cmd);