/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
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 …]
|
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()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | CrashRecoveryContext.cpp | 66 void HandleCrash(int RetCode, uintptr_t Context) { in HandleCrash() 77 CRC->RetCode = RetCode; in HandleCrash() 205 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() local 206 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionFilter() 207 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionFilter() 211 RetCode, reinterpret_cast<uintptr_t>(Except)); in ExceptionFilter() 285 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler() local 286 if ((RetCode & 0xF0000000) == 0xE0000000) in ExceptionHandler() 287 RetCode &= ~0xF0000000; // this crash was generated by sys::Process::Exit in ExceptionHandler() 291 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler() [all …]
|
D | Process.cpp | 93 void Process::Exit(int RetCode) { in Exit() argument 95 CRC->HandleExit(RetCode); in Exit() 96 ::exit(RetCode); in Exit()
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
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
|
D | Process.h | 216 [[noreturn]] static void Exit(int RetCode, bool NoCleanup = false); 219 [[noreturn]] static void ExitNoCleanup(int RetCode);
|
/external/llvm/unittests/Support/ |
D | ProgramTest.cpp | 281 int RetCode = in TEST_F() local 284 ASSERT_EQ(-2, RetCode); in TEST_F() 294 int RetCode = ExecuteAndWait(Executable, argv, nullptr, nullptr, 0, 0, in TEST() local 296 ASSERT_TRUE(RetCode < 0) << "On error ExecuteAndWait should return 0 or " in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | CrashRecoveryContext.h | 103 void HandleExit(int RetCode); 106 int RetCode = 0; variable
|
D | Process.h | 209 static void Exit(int RetCode);
|
/external/google-breakpad/src/client/mac/handler/ |
D | exception_handler.cc | 163 ((mig_reply_error_t*)OutHeadP)->RetCode = MIG_BAD_ID; in breakpad_exc_server() 187 kern_return_t RetCode; in breakpad_exc_server() member 199 OutP->RetCode = ForwardException(In0P->task.name, in breakpad_exc_server()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/Unix/ |
D | Process.inc | 460 [[noreturn]] void Process::ExitNoCleanup(int RetCode) { _Exit(RetCode); }
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/Windows/ |
D | Process.inc | 524 [[noreturn]] void Process::ExitNoCleanup(int RetCode) { 525 TerminateProcess(GetCurrentProcess(), RetCode);
|
D | Signals.inc | 833 unsigned RetCode = EP->ExceptionRecord->ExceptionCode; 834 if (RetCode == (0xE0000000 | EX_IOERR))
|
/external/cpuinfo/test/dmesg/ |
D | zenfone-2.log | 889 [ 0.954379] sep54: dx_sep_state_change_handler:92: State=0x00000010 Status/RetCode=0x00000000 895 [ 1.054812] sep54: dx_sep_state_change_handler:92: State=0x00000400 Status/RetCode=0x00000000 900 [ 1.056041] sep54: dx_sep_state_change_handler:92: State=0x00000800 Status/RetCode=0x00000000 901 [ 1.056248] sep54: dx_sep_state_change_handler:92: State=0x00001000 Status/RetCode=0x00000000 1475 [ 5.013229] sep54: dx_sep_state_change_handler:92: State=0x00000008 Status/RetCode=0x00000000 1476 [ 5.013645] sep54: dx_sep_state_change_handler:92: State=0x00000400 Status/RetCode=0x00000000 1524 [ 5.314392] sep54: dx_sep_state_change_handler:92: State=0x00000800 Status/RetCode=0x00000000 1525 [ 5.314542] sep54: dx_sep_state_change_handler:92: State=0x00001000 Status/RetCode=0x00000000 1703 [ 7.363984] sep54: dx_sep_state_change_handler:92: State=0x00000400 Status/RetCode=0x00000000 1730 [ 7.662930] sep54: dx_sep_state_change_handler:92: State=0x00000800 Status/RetCode=0x00000000 [all …]
|
/external/llvm/lib/IR/ |
D | AutoUpgrade.cpp | 1445 bool RetCode = StripDebugInfo(M); in UpgradeDebugInfo() local 1446 if (RetCode) { in UpgradeDebugInfo() 1450 return RetCode; in UpgradeDebugInfo()
|
/external/swiftshader/third_party/llvm-16.0/configs/common/lib/Target/LoongArch/ |
D | LoongArchGenAsmMatcher.inc | 1939 unsigned RetCode = Match_InvalidOperand; 2029 RetCode = Diag; 2074 RetCode = MatchResult; 2098 RetCode = MatchResult; 2114 return RetCode;
|
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/RISCV/ |
D | RISCVGenAsmMatcher.inc | 2413 unsigned RetCode = Match_InvalidOperand; 2497 RetCode = Diag; 2542 RetCode = MatchResult; 2566 RetCode = MatchResult; 2582 return RetCode;
|
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/PowerPC/ |
D | PPCGenAsmMatcher.inc | 7069 unsigned RetCode = Match_InvalidOperand; 7153 RetCode = Diag; 7198 RetCode = MatchResult; 7222 RetCode = MatchResult; 7245 return RetCode;
|
/external/swiftshader/third_party/llvm-16.0/configs/common/lib/Target/PowerPC/ |
D | PPCGenAsmMatcher.inc | 8149 unsigned RetCode = Match_InvalidOperand; 8239 RetCode = Diag; 8284 RetCode = MatchResult; 8308 RetCode = MatchResult; 8330 return RetCode;
|
/external/swiftshader/third_party/llvm-16.0/configs/common/lib/Target/RISCV/ |
D | RISCVGenAsmMatcher.inc | 5394 unsigned RetCode = Match_InvalidOperand; 5489 RetCode = Diag; 5534 RetCode = MatchResult; 5559 RetCode = MatchResult; 5575 return RetCode;
|
/external/swiftshader/third_party/llvm-16.0/configs/common/lib/Target/Mips/ |
D | MipsGenAsmMatcher.inc | 8148 unsigned RetCode = Match_InvalidOperand; 8238 RetCode = Diag; 8283 RetCode = MatchResult; 8307 RetCode = MatchResult; 8323 return RetCode;
|
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenAsmMatcher.inc | 8115 unsigned RetCode = Match_InvalidOperand; 8199 RetCode = Diag; 8244 RetCode = MatchResult; 8268 RetCode = MatchResult; 8284 return RetCode;
|
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/windows-sys-0.52.0/src/Windows/Win32/System/Search/ |
D | mod.rs | 6368 pub RetCode: i16, field
|
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/windows-sys-0.52.0/src/Windows/Win32/System/Search/ |
D | mod.rs | 6368 pub RetCode: i16, field
|
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenAsmMatcher.inc | 27502 unsigned RetCode = Match_InvalidOperand; 27587 RetCode = Diag; 27632 RetCode = MatchResult; 27656 RetCode = MatchResult; 27672 return RetCode;
|