Lines Matching refs:dep_exception_header

475                         __cxa_dependent_exception* dep_exception_header =  in __cxa_end_catch()  local
478 … cxa_exception_from_thrown_object(dep_exception_header->primaryException); in __cxa_end_catch()
479 __cxa_free_dependent_exception(dep_exception_header); in __cxa_end_catch()
625 __cxa_dependent_exception* dep_exception_header = in __cxa_current_primary_exception() local
627 exception_header = cxa_exception_from_thrown_object(dep_exception_header->primaryException); in __cxa_current_primary_exception()
644 __cxa_dependent_exception* dep_exception_header = in dependent_exception_cleanup() local
647 std::__terminate(dep_exception_header->terminateHandler); in dependent_exception_cleanup()
648 __cxa_decrement_exception_refcount(dep_exception_header->primaryException); in dependent_exception_cleanup()
649 __cxa_free_dependent_exception(dep_exception_header); in dependent_exception_cleanup()
664 __cxa_dependent_exception* dep_exception_header = in __cxa_rethrow_primary_exception() local
666 dep_exception_header->primaryException = thrown_object; in __cxa_rethrow_primary_exception()
668 dep_exception_header->exceptionType = exception_header->exceptionType; in __cxa_rethrow_primary_exception()
669 dep_exception_header->unexpectedHandler = std::get_unexpected(); in __cxa_rethrow_primary_exception()
670 dep_exception_header->terminateHandler = std::get_terminate(); in __cxa_rethrow_primary_exception()
671 setDependentExceptionClass(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
673 dep_exception_header->unwindHeader.exception_cleanup = dependent_exception_cleanup; in __cxa_rethrow_primary_exception()
675 _Unwind_SjLj_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
677 _Unwind_RaiseException(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()
680 __cxa_begin_catch(&dep_exception_header->unwindHeader); in __cxa_rethrow_primary_exception()