Searched refs:RetCode (Results 1 – 11 of 11) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CrashRecoveryContext.cpp | 62 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash() 73 CRC->RetCode = RetCode; in HandleCrash() 213 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter() 293 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler() 383 int RetCode = 128 + Signal; in CrashRecoverySignalHandler() local 387 RetCode = EX_IOERR; in CrashRecoverySignalHandler() 444 CRCI->HandleCrash(RetCode, 0 /*no sig num*/); in HandleExit() 461 if (RetCode <= 128) in isCrash() 468 if (!isCrash(RetCode)) in throwIfCrash() 471 ::RaiseException(RetCode, 0, 0, NULL); in throwIfCrash() [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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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);
|
| /freebsd-14.2/contrib/llvm-project/lld/Common/ |
| H A D | DriverDispatcher.cpp | 191 return {crc.RetCode, /*canRunAgain=*/false}; in lldMain()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 484 [[noreturn]] void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
|
| /freebsd-14.2/contrib/llvm-project/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 | 838 unsigned RetCode = EP->ExceptionRecord->ExceptionCode; 839 if (RetCode == (0xE0000000 | EX_IOERR))
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Job.cpp | 442 return CRC.RetCode; in Execute()
|
| H A D | Driver.cpp | 3720 auto RetCode = in addDeviceDependencesToHostAction() local 3726 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction() 3731 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction() 3789 auto RetCode = SB->addDeviceDependences(HostAction); in addHostDependenceToDeviceActions() local 3793 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions() 3798 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()
|