Searched refs:RetCode (Results 1 – 12 of 12) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | CrashRecoveryContext.cpp | 62 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash() 73 CRC->RetCode = RetCode; in HandleCrash() 212 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() local 213 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter() 214 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionFilter() 218 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter() 292 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler() local 293 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler() 294 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionHandler() 298 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler() [all …]
|
| H A D | Process.cpp | 95 [[noreturn]] void Process::Exit(int RetCode, bool NoCleanup) { in Exit() argument 97 CRC->HandleExit(RetCode); in Exit() 100 ExitNoCleanup(RetCode); in Exit() 102 ::exit(RetCode); in Exit()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | FileSystemStatCache.cpp | 39 std::error_code RetCode; in get() local 43 RetCode = Cache->getStat(Path, Status, isFile, F, FS); in get() 49 RetCode = StatusOrErr.getError(); in get() 65 RetCode = OwnedFile.getError(); in get() 78 RetCode = StatusOrErr.getError(); in get() 84 if (RetCode) in get() 85 return RetCode; in get()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | CrashRecoveryContext.h | 102 [[noreturn]] void HandleExit(int RetCode); 105 static bool isCrash(int RetCode); 109 static bool throwIfCrash(int RetCode); 112 int RetCode = 0; variable
|
| H A D | Process.h | 216 [[noreturn]] static void Exit(int RetCode, bool NoCleanup = false); 219 [[noreturn]] static void ExitNoCleanup(int RetCode);
|
| /openbsd-src/gnu/llvm/lld/tools/lld/ |
| H A D | lld.cpp | 206 return {crc.RetCode, /*canRunAgain=*/false}; in safeLldMain()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/ |
| H A D | BenchmarkRunner.cpp | 114 if (const char *const SigName = strsignal(CRC.RetCode - kSigOffset)) { in runAndSample()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 464 [[noreturn]] void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/Windows/ |
| H A D | Process.inc | 524 [[noreturn]] void Process::ExitNoCleanup(int RetCode) { 525 TerminateProcess(GetCurrentProcess(), RetCode);
|
| H A D | Signals.inc | 833 unsigned RetCode = EP->ExceptionRecord->ExceptionCode; 834 if (RetCode == (0xE0000000 | EX_IOERR))
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ |
| H A D | Job.cpp | 430 return CRC.RetCode; in Execute()
|
| H A D | Driver.cpp | 3622 auto RetCode = in addDeviceDependencesToHostAction() local 3628 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction() 3633 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction() 3691 auto RetCode = SB->addDeviceDependences(HostAction); in addHostDependenceToDeviceActions() local 3695 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions() 3700 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()
|