Lines Matching refs:unwindHeader
219 _Unwind_Exception unwindHeader; member
271 offsetof(struct __cxa_exception, unwindHeader)); in exceptionFromPointer()
275 if (!isDependentException(ex->unwindHeader.exception_class)) { return ex; } in realExceptionFromException()
625 if (isDependentException(exception->unwindHeader.exception_class)) in releaseException()
642 assert(isDependentException(ex->unwindHeader.exception_class)); in __cxa_free_dependent_exception()
700 __cxa_begin_catch (&(thrown_exception->unwindHeader)); in report_failure()
754 _Unwind_Reason_Code err = _Unwind_RaiseException(&ex->unwindHeader); in throw_exception()
778 ex->unwindHeader.exception_class = exception_class; in __cxa_throw()
779 ex->unwindHeader.exception_cleanup = exception_cleanup; in __cxa_throw()
795 ex->unwindHeader.exception_class = dependent_exception_class; in __cxa_rethrow_primary_exception()
796 ex->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
816 if (isDependentException(ex->unwindHeader.exception_class)) { return; } in __cxa_increment_exception_refcount()
881 _Unwind_Reason_Code err = _Unwind_Resume_or_Rethrow(&ex->unwindHeader); in __cxa_rethrow()