Searched refs:ExitCode (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/sqlite3/
H A DReplace.cs50 internal enum ExitCode enum in namespace:Replace
127 /// values from the <see cref="ExitCode" /> enumeration.
139 return (int)ExitCode.MissingArgs;
145 return (int)ExitCode.WrongNumArgs;
166 return (int)ExitCode.BadMatchingOnlyFlag;
209 return (int)ExitCode.Success;
218 return (int)ExitCode.Exception;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp77 int ExitCode; member in struct:fuzzer::FuzzJob
203 // if (!FilesToAdd.empty() || Job->ExitCode != 0)
277 Job->ExitCode = ExecuteCommand(Job->Cmd);
320 int ExitCode = 0; local
342 ExitCode = Job->ExitCode;
343 if (ExitCode == Options.InterruptExitCode) {
353 if (Options.IgnoreTimeouts && ExitCode == Options.TimeoutExitCode)
355 else if (Options.IgnoreOOMs && ExitCode == Options.OOMExitCode)
357 else if (ExitCode !
[all...]
H A DFuzzerDriver.cpp235 int ExitCode = ExecuteCommand(Cmd); local
236 if (ExitCode != 0)
240 C, ExitCode);
356 auto ExitCode = ExecuteCommand(Cmd); local
358 if (!ExitCode) {
408 int ExitCode = ExecuteCommand(Cmd); local
409 if (ExitCode == 0) {
428 ExitCode = ExecuteCommand(Cmd);
430 if (ExitCode == 0) {
H A DFuzzerMerge.cpp376 auto ExitCode = ExecuteCommand(Cmd); local
377 if (!ExitCode) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp445 static bool ShouldFallback(int ExitCode) { argument
449 return ExitCode != 0;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp745 int ExitCode = RunProgramWithTimeout(OutputBinary.str(), ProgramArgs, local
750 if (ExitCode < -1) {
755 return ExitCode;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h1336 int ExitCode = GetExitCode(Err); local
1338 exit(ExitCode);

Completed in 128 milliseconds