Home
last modified time | relevance | path

Searched refs:ExceptionInfo (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DCrashRecoveryContext.cpp259 static LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo) in ExceptionHandler() argument
264 switch (ExceptionInfo->ExceptionRecord->ExceptionCode) in ExceptionHandler()
285 int RetCode = (int)ExceptionInfo->ExceptionRecord->ExceptionCode; in ExceptionHandler()
291 RetCode, reinterpret_cast<uintptr_t>(ExceptionInfo)); in ExceptionHandler()
/third_party/json/test/thirdparty/Fuzzer/
DFuzzerUtilWindows.cpp31 LONG CALLBACK ExceptionHandler(PEXCEPTION_POINTERS ExceptionInfo) { in ExceptionHandler() argument
32 switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { in ExceptionHandler()
/third_party/glib/glib/
Dgwin32.c1073 g_win32_veh_handler (PEXCEPTION_POINTERS ExceptionInfo) in g_win32_veh_handler() argument
1086 if (ExceptionInfo == NULL || in g_win32_veh_handler()
1087 ExceptionInfo->ExceptionRecord == NULL || in g_win32_veh_handler()
1091 er = ExceptionInfo->ExceptionRecord; in g_win32_veh_handler()
Dgthread-win32.c548 SetThreadName_VEH (PEXCEPTION_POINTERS ExceptionInfo) in SetThreadName_VEH() argument
550 if (ExceptionInfo->ExceptionRecord != NULL && in SetThreadName_VEH()
551 ExceptionInfo->ExceptionRecord->ExceptionCode == EXCEPTION_SET_THREAD_NAME) in SetThreadName_VEH()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DSignals.inc696 WriteWindowsDumpFile(PMINIDUMP_EXCEPTION_INFORMATION ExceptionInfo) {
767 FileHandle, DumpType, ExceptionInfo, NULL, NULL))
782 MINIDUMP_EXCEPTION_INFORMATION ExceptionInfo;
783 ExceptionInfo.ThreadId = ::GetCurrentThreadId();
784 ExceptionInfo.ExceptionPointers = ep;
785 ExceptionInfo.ClientPointers = FALSE;
787 if (std::error_code EC = WriteWindowsDumpFile(&ExceptionInfo))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DSignals.inc723 WriteWindowsDumpFile(PMINIDUMP_EXCEPTION_INFORMATION ExceptionInfo) {
794 FileHandle, DumpType, ExceptionInfo, NULL, NULL))
813 MINIDUMP_EXCEPTION_INFORMATION ExceptionInfo;
814 ExceptionInfo.ThreadId = ::GetCurrentThreadId();
815 ExceptionInfo.ExceptionPointers = ep;
816 ExceptionInfo.ClientPointers = FALSE;
818 if (std::error_code EC = WriteWindowsDumpFile(&ExceptionInfo))
/third_party/json/test/thirdparty/doctest/
Ddoctest.h3957 static LONG CALLBACK handleException(PEXCEPTION_POINTERS ExceptionInfo) {
3959 if(ExceptionInfo->ExceptionRecord->ExceptionCode == signalDefs[i].id) {