Searched refs:RetCode (Results 1 – 10 of 10) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CrashRecoveryContext.cpp | 65 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash() 76 CRC->RetCode = RetCode; in HandleCrash() 212 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter() 217 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter() 292 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler() 382 int RetCode = 128 + Signal; in CrashRecoverySignalHandler() local 386 RetCode = EX_IOERR; in CrashRecoverySignalHandler() 441 CRCI->HandleCrash(RetCode, 0 /*no sig num*/); in HandleExit() 455 ::RaiseException(RetCode, 0, 0, NULL); in throwIfCrash() 459 if (RetCode <= 128) in throwIfCrash() [all …]
|
| H A D | Process.cpp | 96 void Process::Exit(int RetCode, bool NoCleanup) { in Exit() argument 98 CRC->HandleExit(RetCode); in Exit() 101 ExitNoCleanup(RetCode); in Exit() 103 ::exit(RetCode); in Exit()
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CrashRecoveryContext.h | 103 void HandleExit(int RetCode); 107 static bool throwIfCrash(int RetCode); 110 int RetCode = 0; variable
|
| H A D | Process.h | 218 static void Exit(int RetCode, bool NoCleanup = false); 222 static void ExitNoCleanup(int RetCode);
|
| /freebsd-13.1/contrib/llvm-project/lld/tools/lld/ |
| H A D | lld.cpp | 182 return {crc.RetCode, /*canRunAgain=*/false}; in safeLldMain()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Process.inc | 508 void Process::ExitNoCleanup(int RetCode) { 509 TerminateProcess(GetCurrentProcess(), RetCode);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 465 void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ |
| H A D | Job.cpp | 407 return CRC.RetCode; in Execute()
|
| H A D | Driver.cpp | 3357 auto RetCode = in addDeviceDependencesToHostAction() local 3363 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction() 3368 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction() 3423 auto RetCode = SB->addDeviceDepences(HostAction); in addHostDependenceToDeviceActions() local 3427 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions() 3432 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()
|