Home
last modified time | relevance | path

Searched refs:new_exception_header (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/cxx-stl/gabi++/src/
Dcall_unexpected.cc293 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected() local
294 if (new_exception_header == 0) { // This shouldn't be able to happen! in __cxa_call_unexpected()
298 new_exception_header->unwindHeader.exception_class == __gxx_exception_class; in __cxa_call_unexpected()
300 if (native_new_exception && (new_exception_header != old_exception_header)) { in __cxa_call_unexpected()
301 const std::type_info* excpType = new_exception_header->exceptionType; in __cxa_call_unexpected()
303 excpType, new_exception_header+1, unwind_exception)) { in __cxa_call_unexpected()
310 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
314 __cxa_begin_catch(&new_exception_header->unwindHeader); in __cxa_call_unexpected()
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_personality.cpp1259 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected() local
1260 if (new_exception_header == 0) in __cxa_call_unexpected()
1264 (new_exception_header->unwindHeader.exception_class & get_vendor_and_language) == in __cxa_call_unexpected()
1267 if (native_new_exception && (new_exception_header != old_exception_header)) in __cxa_call_unexpected()
1270 static_cast<const __shim_type_info*>(new_exception_header->exceptionType); in __cxa_call_unexpected()
1272new_exception_header->unwindHeader.exception_class == kOurDependentExceptionClass ? in __cxa_call_unexpected()
1273 ((__cxa_dependent_exception*)new_exception_header)->primaryException : in __cxa_call_unexpected()
1274 new_exception_header + 1; in __cxa_call_unexpected()
1284 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
1291 __cxa_begin_catch(&new_exception_header->unwindHeader); in __cxa_call_unexpected()