Searched defs:ExitCode (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/Driver/
H A DJob.cpp287 static bool ShouldFallback(int ExitCode) { argument
291 return ExitCode != 0;
/external/llvm/lib/Fuzzer/
H A DFuzzerDriver.cpp208 int ExitCode = ExecuteCommand(ToRun); local
209 if (ExitCode != 0)
213 C, ExitCode);
/external/llvm/include/llvm/Support/
H A DError.h933 int ExitCode = GetExitCode(Err); local
935 exit(ExitCode);
/external/llvm/tools/bugpoint/
H A DToolRunner.cpp786 int ExitCode = RunProgramWithTimeout(OutputBinary.str(), &ProgramArgs[0], local
791 if (ExitCode < -1) {
797 return ExitCode;
/external/swiftshader/third_party/LLVM/tools/bugpoint/
H A DToolRunner.cpp857 int ExitCode = RunProgramWithTimeout(OutputBinary, &ProgramArgs[0], local
862 if (ExitCode < -1) {
868 return ExitCode;
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DError.h973 int ExitCode = GetExitCode(Err); local
975 exit(ExitCode);
/external/python/cpython3/Modules/
H A D_winapi.c935 ExitCode: UINT
941 _winapi_ExitProcess_impl(PyObject *module, UINT ExitCode) argument
950 ExitProcess(ExitCode);
/external/python/cpython3/Modules/clinic/
H A D_winapi.c.h384 "ExitProcess($module, ExitCode, /)\n"
392 _winapi_ExitProcess_impl(PyObject *module, UINT ExitCode);
398 UINT ExitCode; local
400 if (!PyArg_Parse(arg, "I:ExitProcess", &ExitCode)) {
403 return_value = _winapi_ExitProcess_impl(module, ExitCode);

Completed in 986 milliseconds