Home
last modified time | relevance | path

Searched refs:exception_code (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Windows/
H A Duser-exception.cpp20 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler() local
21 if (exception_code == EXCEPTION_ACCESS_VIOLATION) { in SEHHandler()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_win.cpp68 DWORD exception_code = info->ExceptionRecord->ExceptionCode; in SEHHandler() local
69 if (__sanitizer::IsHandledDeadlyException(exception_code)) in SEHHandler()
/llvm-project-15.0.7/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h406 static int GTestShouldProcessSEH(DWORD exception_code);
H A Dgtest.cc555 int UnitTestOptions::GTestShouldProcessSEH(DWORD exception_code) { in GTestShouldProcessSEH() argument
570 else if (exception_code == EXCEPTION_BREAKPOINT) in GTestShouldProcessSEH()
572 else if (exception_code == kCxxExceptionCode) in GTestShouldProcessSEH()
2367 static std::string* FormatSehExceptionMessage(DWORD exception_code, in FormatSehExceptionMessage() argument
2371 exception_code << std::setbase(10) << " thrown in " << location << "."; in FormatSehExceptionMessage()