Home
last modified time | relevance | path

Searched refs:ExceptionCode (Results 1 – 25 of 50) sorted by relevance

12

/external/compiler-rt/lib/asan/
Dasan_win.cc226 if (exception_pointers->ExceptionRecord->ExceptionCode != in ShadowExceptionHandler()
274 if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION || in SEHHandler()
275 exception_record->ExceptionCode == EXCEPTION_IN_PAGE_ERROR) { in SEHHandler()
277 (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION) in SEHHandler()
/external/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp267 static StringRef ExceptionCodeToString(DWORD ExceptionCode) { in ExceptionCodeToString() argument
268 switch(ExceptionCode) { in ExceptionCodeToString()
515 Exception.ExceptionRecord.ExceptionCode) in main()
516 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"; in main()
526 Exception.ExceptionRecord.ExceptionCode) in main()
527 << " (" << Exception.ExceptionRecord.ExceptionCode in main()
/external/llvm-project/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp266 static StringRef ExceptionCodeToString(DWORD ExceptionCode) { in ExceptionCodeToString() argument
267 switch(ExceptionCode) { in ExceptionCodeToString()
514 Exception.ExceptionRecord.ExceptionCode) in main()
515 << " (" << Exception.ExceptionRecord.ExceptionCode << ")\n"; in main()
525 Exception.ExceptionRecord.ExceptionCode) in main()
526 << " (" << Exception.ExceptionRecord.ExceptionCode in main()
/external/llvm-project/libunwind/src/
DUnwind-seh.cpp70 ms_exc->ExceptionCode, ms_exc->ExceptionFlags, in _GCC_specific_handler()
72 if (ms_exc->ExceptionCode == STATUS_GCC_UNWIND) { in _GCC_specific_handler()
88 if (ms_exc->ExceptionCode == STATUS_GCC_THROW) { in _GCC_specific_handler()
176 ms_exc->ExceptionCode = STATUS_GCC_UNWIND; in _GCC_specific_handler()
207 ms_exc.ExceptionCode = STATUS_GCC_THROW; in __libunwind_seh_personality()
381 ms_exc.ExceptionCode = STATUS_GCC_THROW; in _Unwind_Resume()
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DExceptionRecord.h28 m_code = record.ExceptionCode; in ExceptionRecord()
41 : m_code(record.ExceptionCode), m_continuable(record.ExceptionFlags == 0), in ExceptionRecord()
DDebuggerThread.cpp357 (info.ExceptionRecord.ExceptionCode == EXCEPTION_BREAKPOINT || in HandleExceptionEvent()
358 info.ExceptionRecord.ExceptionCode == STATUS_WX86_BREAKPOINT)) { in HandleExceptionEvent()
376 info.ExceptionRecord.ExceptionCode, thread_id); in HandleExceptionEvent()
/external/llvm-project/llvm/unittests/ObjectYAML/
DMinidumpYAMLTest.cpp173 EXPECT_EQ(0x23u, Exception.ExceptionCode); in TEST()
216 EXPECT_EQ(0x23u, Exception.ExceptionCode); in TEST()
272 EXPECT_EQ(0x0u, Exception.ExceptionCode); in TEST()
323 EXPECT_EQ(0x23u, Exception.ExceptionCode); in TEST()
/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/compiler-rt/lib/asan/
Dasan_win.cpp68 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler()
94 if (ExceptionRecord->ExceptionCode != DBG_PRINTEXCEPTION_C) in INTERCEPTOR_WINAPI()
278 if (exception_pointers->ExceptionRecord->ExceptionCode != in ShadowExceptionHandler()
/external/llvm-project/compiler-rt/test/asan/TestCases/Windows/
Duser-exception.cpp20 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler()
/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/googletest/googletest/test/
Dgoogletest-break-on-failure-unittest_.cc59 exit(exception_pointers->ExceptionRecord->ExceptionCode); in ExitWithExceptionCode()
/external/mesa3d/src/mesa/x86/
Dcommon_x86.c103 if ( rec->ExceptionCode == EXCEPTION_ILLEGAL_INSTRUCTION ) { in ExceptionFilter()
106 } else if ( rec->ExceptionCode == STATUS_FLOAT_MULTIPLE_TRAPS ) { in ExceptionFilter()
/external/google-breakpad/src/client/windows/handler/
Dexception_handler.cc481 DWORD code = exinfo->ExceptionRecord->ExceptionCode; in HandleException()
577 exception_record.ExceptionCode = STATUS_INVALID_PARAMETER; in HandleInvalidParameter()
657 exception_record.ExceptionCode = STATUS_NONCONTINUABLE_EXCEPTION; in HandlePureVirtualCall()
748 exception_record.ExceptionCode = STATUS_NONCONTINUABLE_EXCEPTION; in WriteMinidump()
803 ex.ExceptionCode = EXCEPTION_BREAKPOINT; in WriteMinidumpForChild()
/external/angle/util/windows/win32/
Dtest_utils_win32.cpp87 const DWORD code = e->ExceptionRecord->ExceptionCode; in StackTraceCrashHandler()
/external/catch2/include/internal/
Dcatch_fatal_condition.cpp48 if (ExceptionInfo->ExceptionRecord->ExceptionCode == def.id) { in handleVectoredException()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cpp959 if (exception_record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION) in GetAddress()
965 return ((EXCEPTION_RECORD *)siginfo)->ExceptionCode == in IsMemoryAccess()
975 if (exception_record->ExceptionCode != EXCEPTION_ACCESS_VIOLATION) in GetWriteFlag()
998 return static_cast<const EXCEPTION_RECORD *>(siginfo)->ExceptionCode; in GetType()
/external/skqp/tools/
DCrashHandler.cpp116 const DWORD code = e->ExceptionRecord->ExceptionCode; in handler()
/external/deqp/framework/qphelper/
DqpCrashHandler.c167 if (info->ExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT) in unhandledExceptionFilter()
191 switch (info->ExceptionRecord->ExceptionCode) in unhandledExceptionFilter()
/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()
361 m_active_exception->ExceptionRecord.ExceptionCode, 8) in RefreshStateAfterStop()
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerUtilWindows.cpp34 switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { in ExceptionHandler()
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerUtilWindows.cpp34 switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { in ExceptionHandler()
/external/skia/tools/
DCrashHandler.cpp171 const DWORD code = e->ExceptionRecord->ExceptionCode; in handler()
/external/llvm-project/llvm/include/llvm/BinaryFormat/
DMinidump.h233 support::ulittle32_t ExceptionCode; member

12