/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ExceptionRecord.h | 25 class ExceptionRecord { 27 ExceptionRecord(const EXCEPTION_RECORD &record, lldb::tid_t thread_id) { in ExceptionRecord() function 30 if (record.ExceptionRecord) in ExceptionRecord() 32 new ExceptionRecord(*record.ExceptionRecord, thread_id)); in ExceptionRecord() 40 ExceptionRecord(const MINIDUMP_EXCEPTION &record, lldb::tid_t thread_id) in ExceptionRecord() function 48 if (record.ExceptionRecord) { in ExceptionRecord() 49 m_next_exception.reset(new ExceptionRecord( in ExceptionRecord() 50 *reinterpret_cast<const MINIDUMP_EXCEPTION *>(record.ExceptionRecord), in ExceptionRecord() 55 virtual ~ExceptionRecord() {} in ~ExceptionRecord() 60 const ExceptionRecord *GetNextException() const { in GetNextException() [all …]
|
D | ForwardDecl.h | 33 class ExceptionRecord; variable 37 typedef std::shared_ptr<ExceptionRecord> ExceptionRecordSP; 38 typedef std::unique_ptr<ExceptionRecord> ExceptionRecordUP;
|
D | DebuggerThread.cpp | 357 (info.ExceptionRecord.ExceptionCode == EXCEPTION_BREAKPOINT || in HandleExceptionEvent() 358 info.ExceptionRecord.ExceptionCode == STATUS_WX86_BREAKPOINT)) { in HandleExceptionEvent() 373 new ExceptionRecord(info.ExceptionRecord, thread_id)); in HandleExceptionEvent() 376 info.ExceptionRecord.ExceptionCode, thread_id); in HandleExceptionEvent()
|
D | IDebugDelegate.h | 32 const ExceptionRecord &record) = 0;
|
D | NativeProcessWindows.h | 101 const ExceptionRecord &record) override; 149 const ExceptionRecord &record) override { in OnDebugException()
|
D | LocalDebugDelegate.h | 48 const ExceptionRecord &record) override;
|
D | LocalDebugDelegate.cpp | 30 const ExceptionRecord &record) { in OnDebugException()
|
D | DebuggerThread.h | 37 std::weak_ptr<ExceptionRecord> GetActiveException() { in GetActiveException()
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_win.cpp | 54 EXCEPTION_RECORD *exception_record = info->ExceptionRecord; in __asan_unhandled_exception_filter() 68 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler() 90 INTERCEPTOR_WINAPI(void, RtlRaiseException, EXCEPTION_RECORD *ExceptionRecord) { in INTERCEPTOR_WINAPI() argument 94 if (ExceptionRecord->ExceptionCode != DBG_PRINTEXCEPTION_C) in INTERCEPTOR_WINAPI() 96 REAL(RtlRaiseException)(ExceptionRecord); in INTERCEPTOR_WINAPI() 278 if (exception_pointers->ExceptionRecord->ExceptionCode != in ShadowExceptionHandler() 280 exception_pointers->ExceptionRecord->NumberParameters < 2) { in ShadowExceptionHandler() 287 (uptr)(exception_pointers->ExceptionRecord->ExceptionInformation[1]); in ShadowExceptionHandler()
|
/external/llvm-project/llvm/unittests/ObjectYAML/ |
D | MinidumpYAMLTest.cpp | 172 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() 175 EXPECT_EQ(0x0102030405060708u, Exception.ExceptionRecord); in TEST() 215 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() 218 EXPECT_EQ(0x0102030405060708u, Exception.ExceptionRecord); in TEST() 271 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() 274 EXPECT_EQ(0x00u, Exception.ExceptionRecord); in TEST() 322 const minidump::Exception &Exception = Stream.ExceptionRecord; in TEST() 325 EXPECT_EQ(0x0102030405060708u, Exception.ExceptionRecord); in TEST()
|
/external/llvm/utils/KillTheDoctor/ |
D | KillTheDoctor.cpp | 512 << Exception.ExceptionRecord.ExceptionAddress in main() 515 Exception.ExceptionRecord.ExceptionCode) in main() 516 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"; in main() 523 errs() << Exception.ExceptionRecord.ExceptionAddress in main() 526 Exception.ExceptionRecord.ExceptionCode) in main() 527 << " (" << Exception.ExceptionRecord.ExceptionCode in main()
|
/external/llvm-project/llvm/utils/KillTheDoctor/ |
D | KillTheDoctor.cpp | 511 << Exception.ExceptionRecord.ExceptionAddress in main() 514 Exception.ExceptionRecord.ExceptionCode) in main() 515 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"; in main() 522 errs() << Exception.ExceptionRecord.ExceptionAddress in main() 525 Exception.ExceptionRecord.ExceptionCode) in main() 526 << " (" << Exception.ExceptionRecord.ExceptionCode in main()
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | process_state.h | 109 const ExceptionRecord* exception_record() const { return &exception_record_; } in exception_record() 172 ExceptionRecord exception_record_;
|
D | exception_record.h | 63 class ExceptionRecord {
|
/external/compiler-rt/lib/asan/ |
D | asan_win.cc | 226 if (exception_pointers->ExceptionRecord->ExceptionCode != in ShadowExceptionHandler() 233 (uptr)(exception_pointers->ExceptionRecord->ExceptionInformation[1]); in ShadowExceptionHandler() 271 EXCEPTION_RECORD *exception_record = info->ExceptionRecord; in SEHHandler()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | CrashRecoveryContext.cpp | 205 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() 264 switch (ExceptionInfo->ExceptionRecord->ExceptionCode) in ExceptionHandler() 285 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler()
|
/external/llvm-project/llvm/lib/Support/ |
D | CrashRecoveryContext.cpp | 210 int RetCode = (int)Except->ExceptionRecord->ExceptionCode; in ExceptionFilter() 269 switch (ExceptionInfo->ExceptionRecord->ExceptionCode) in ExceptionHandler() 290 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler()
|
/external/llvm-project/compiler-rt/test/asan/TestCases/Windows/ |
D | user-exception.cpp | 20 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler()
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/ |
D | googletest-break-on-failure-unittest_.cc | 59 exit(exception_pointers->ExceptionRecord->ExceptionCode); in ExitWithExceptionCode()
|
/external/googletest/googletest/test/ |
D | googletest-break-on-failure-unittest_.cc | 59 exit(exception_pointers->ExceptionRecord->ExceptionCode); in ExitWithExceptionCode()
|
/external/llvm-project/lldb/source/Plugins/Process/minidump/ |
D | ProcessMinidump.cpp | 320 if (m_active_exception->ExceptionRecord.ExceptionCode == in RefreshStateAfterStop() 342 uint32_t signo = m_active_exception->ExceptionRecord.ExceptionCode; in RefreshStateAfterStop() 353 *stop_thread, m_active_exception->ExceptionRecord.ExceptionCode, 2, in RefreshStateAfterStop() 354 m_active_exception->ExceptionRecord.ExceptionFlags, in RefreshStateAfterStop() 355 m_active_exception->ExceptionRecord.ExceptionAddress, 0); in RefreshStateAfterStop() 361 m_active_exception->ExceptionRecord.ExceptionCode, 8) in RefreshStateAfterStop() 364 m_active_exception->ExceptionRecord.ExceptionAddress, 8); in RefreshStateAfterStop()
|
/external/libchrome/base/process/ |
D | memory_unittest.cc | 475 exception_ptrs->ExceptionRecord->ExceptionCode); in HandleOutOfMemoryException() 476 EXPECT_LE(1U, exception_ptrs->ExceptionRecord->NumberParameters); in HandleOutOfMemoryException() 478 exception_ptrs->ExceptionRecord->ExceptionInformation[0]); in HandleOutOfMemoryException()
|
/external/llvm-project/llvm/include/llvm/BinaryFormat/ |
D | Minidump.h | 235 support::ulittle64_t ExceptionRecord; member 246 Exception ExceptionRecord; member
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | Minidump.h | 235 support::ulittle64_t ExceptionRecord; member 246 Exception ExceptionRecord; member
|
/external/deqp/framework/qphelper/ |
D | qpCrashHandler.c | 167 if (info->ExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT) in unhandledExceptionFilter() 191 switch (info->ExceptionRecord->ExceptionCode) in unhandledExceptionFilter() 224 g_crashHandler->crashAddress = (deUintptr)info->ExceptionRecord->ExceptionAddress; in unhandledExceptionFilter()
|