Lines Matching refs:unwindHeader

151     (void) __cxa_begin_catch(&exception_header->unwindHeader);  in failed_throw()
265 setOurExceptionClass(&exception_header->unwindHeader); in __cxa_throw()
269 exception_header->unwindHeader.exception_cleanup = exception_cleanup_func; in __cxa_throw()
277 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_throw()
279 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_throw()
359 if (__isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_end_cleanup_impl()
372 return &exception_header->unwindHeader; in __cxa_end_cleanup_impl()
448 return reinterpret_cast<void*>(exception_header->unwindHeader.barrier_cache.bitpattern[0]); in __cxa_begin_catch()
501 bool native_exception = __isOurExceptionClass(&exception_header->unwindHeader); in __cxa_end_catch()
527 if (isDependentException(&exception_header->unwindHeader)) in __cxa_end_catch()
549 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
566 if (!__isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_exception_type()
588 bool native_exception = __isOurExceptionClass(&exception_header->unwindHeader); in __cxa_rethrow()
605 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
607 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
614 __cxa_begin_catch(&exception_header->unwindHeader); in __cxa_rethrow()
677 if (!__isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_primary_exception()
679 if (isDependentException(&exception_header->unwindHeader)) { in __cxa_current_primary_exception()
726 setDependentExceptionClass(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
728 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
730 _Unwind_SjLj_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
732 _Unwind_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
735 __cxa_begin_catch(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()