Searched refs:RetCode (Results 1 – 10 of 10) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | CrashRecoveryContext.cpp | 64 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash() 75 CRC->RetCode = RetCode; in HandleCrash() 210 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() local 211 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter() 212 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionFilter() 216 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter() 290 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler() local 291 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler() 292 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionHandler() 296 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler() [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()
|
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/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);
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/ |
H A D | BenchmarkRunner.cpp | 112 if (const char *const SigName = strsignal(CRC.RetCode - kSigOffset)) { in runAndSample()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/ |
H A D | Process.inc | 465 void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
H A D | Process.inc | 508 void Process::ExitNoCleanup(int RetCode) { 509 TerminateProcess(GetCurrentProcess(), RetCode);
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ |
H A D | Job.cpp | 406 return CRC.RetCode; in Execute()
|
H A D | Driver.cpp | 3341 auto RetCode = in addDeviceDependencesToHostAction() local 3347 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) in addDeviceDependencesToHostAction() 3352 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addDeviceDependencesToHostAction() 3407 auto RetCode = SB->addDeviceDepences(HostAction); in addHostDependenceToDeviceActions() local 3411 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && in addHostDependenceToDeviceActions() 3416 if (RetCode != DeviceActionBuilder::ABRT_Inactive) in addHostDependenceToDeviceActions()
|