Lines Matching refs:unwindHeader
152 (void) __cxa_begin_catch(&exception_header->unwindHeader); in failed_throw()
267 setOurExceptionClass(&exception_header->unwindHeader); in __cxa_throw()
271 exception_header->unwindHeader.exception_cleanup = exception_cleanup_func; in __cxa_throw()
279 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_throw()
281 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_throw()
361 if (__isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_end_cleanup_impl()
374 return &exception_header->unwindHeader; in __cxa_end_cleanup_impl()
450 return reinterpret_cast<void*>(exception_header->unwindHeader.barrier_cache.bitpattern[0]); in __cxa_begin_catch()
503 bool native_exception = __isOurExceptionClass(&exception_header->unwindHeader); in __cxa_end_catch()
529 if (isDependentException(&exception_header->unwindHeader)) in __cxa_end_catch()
551 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
568 if (!__isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_exception_type()
590 bool native_exception = __isOurExceptionClass(&exception_header->unwindHeader); in __cxa_rethrow()
607 _Unwind_SjLj_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
609 _Unwind_RaiseException(&exception_header->unwindHeader); in __cxa_rethrow()
616 __cxa_begin_catch(&exception_header->unwindHeader); in __cxa_rethrow()
679 if (!__isOurExceptionClass(&exception_header->unwindHeader)) in __cxa_current_primary_exception()
681 if (isDependentException(&exception_header->unwindHeader)) { in __cxa_current_primary_exception()
728 setDependentExceptionClass(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
730 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
732 _Unwind_SjLj_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
734 _Unwind_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
737 __cxa_begin_catch(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()