Lines Matching refs:caughtExceptions
462 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
464 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
465 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
476 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
479 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
516 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
532 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
545 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
570 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
571 globals->caughtExceptions = 0; in __cxa_end_catch()
584 __cxa_exception *exception_header = globals->caughtExceptions; in __cxa_current_exception_type()
606 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_rethrow()
623 globals->caughtExceptions = 0; in __cxa_rethrow()
695 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_current_primary_exception()