Searched defs:exceptionInfo (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/windows/vm/
H A DvmError_windows.cpp71 LONG WINAPI crash_handler(struct _EXCEPTION_POINTERS* exceptionInfo) { argument
72 DWORD exception_code = exceptionInfo->ExceptionRecord->ExceptionCode;
74 exceptionInfo->ExceptionRecord, exceptionInfo->ContextRecord);
H A Dos_windows.cpp186 LONG WINAPI Handle_FLT_Exception(struct _EXCEPTION_POINTERS* exceptionInfo);
388 LONG WINAPI topLevelExceptionFilter(struct _EXCEPTION_POINTERS* exceptionInfo);
2020 LONG Handle_Exception(struct _EXCEPTION_POINTERS* exceptionInfo, address handler) { argument
2024 thread->set_saved_exception_pc((address)exceptionInfo->ContextRecord->StIIP);
2026 exceptionInfo->ContextRecord->StIIP = (DWORD64)handler;
2028 thread->set_saved_exception_pc((address)exceptionInfo->ContextRecord->Rip);
2030 exceptionInfo->ContextRecord->Rip = (DWORD64)handler;
2032 thread->set_saved_exception_pc((address)exceptionInfo->ContextRecord->Eip);
2034 exceptionInfo->ContextRecord->Eip = (LONG)handler;
2116 LONG Handle_IDiv_Exception(struct _EXCEPTION_POINTERS* exceptionInfo) { argument
2149 Handle_FLT_Exception(struct _EXCEPTION_POINTERS* exceptionInfo) argument
2221 topLevelExceptionFilter(struct _EXCEPTION_POINTERS* exceptionInfo) argument
2580 fastJNIAccessorExceptionFilter(struct _EXCEPTION_POINTERS* exceptionInfo) argument
[all...]

Completed in 59 milliseconds