Home
last modified time | relevance | path

Searched refs:ExceptionRecord (Results 1 – 25 of 62) sorted by relevance

123

/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DExceptionRecord.h25 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 …]
DForwardDecl.h33 class ExceptionRecord; variable
37 typedef std::shared_ptr<ExceptionRecord> ExceptionRecordSP;
38 typedef std::unique_ptr<ExceptionRecord> ExceptionRecordUP;
DDebuggerThread.cpp357 (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()
DIDebugDelegate.h32 const ExceptionRecord &record) = 0;
DNativeProcessWindows.h101 const ExceptionRecord &record) override;
149 const ExceptionRecord &record) override { in OnDebugException()
DLocalDebugDelegate.h48 const ExceptionRecord &record) override;
DLocalDebugDelegate.cpp30 const ExceptionRecord &record) { in OnDebugException()
/external/llvm-project/compiler-rt/lib/asan/
Dasan_win.cpp54 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/
DMinidumpYAMLTest.cpp172 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-project/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp511 << 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/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp512 << 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/google-breakpad/src/google_breakpad/processor/
Dprocess_state.h109 const ExceptionRecord* exception_record() const { return &exception_record_; } in exception_record()
172 ExceptionRecord exception_record_;
Dexception_record.h63 class ExceptionRecord {
/external/compiler-rt/lib/asan/
Dasan_win.cc226 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/
DCrashRecoveryContext.cpp205 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/
DCrashRecoveryContext.cpp210 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/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp320 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/llvm-project/compiler-rt/test/asan/TestCases/Windows/
Duser-exception.cpp20 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler()
/external/libchrome/base/process/
Dmemory_unittest.cc475 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/googletest/googletest/test/
Dgoogletest-break-on-failure-unittest_.cc59 exit(exception_pointers->ExceptionRecord->ExceptionCode); in ExitWithExceptionCode()
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/test/
Dgoogletest-break-on-failure-unittest_.cc59 exit(exception_pointers->ExceptionRecord->ExceptionCode); in ExitWithExceptionCode()
/external/deqp/framework/qphelper/
DqpCrashHandler.c167 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()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMinidump.h235 support::ulittle64_t ExceptionRecord; member
246 Exception ExceptionRecord; member
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DMinidump.h235 support::ulittle64_t ExceptionRecord; member
246 Exception ExceptionRecord; member
/external/grpc-grpc/test/core/util/
Dtest_config.cc159 PEXCEPTION_RECORD exrec = ex_info->ExceptionRecord; in crash_handler()
166 exrec = exrec->ExceptionRecord; in crash_handler()

123