Lines Matching refs:caughtExceptions
443 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
445 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
446 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
457 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
460 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
497 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
513 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
526 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
551 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
552 globals->caughtExceptions = 0; in __cxa_end_catch()
565 __cxa_exception *exception_header = globals->caughtExceptions; in __cxa_current_exception_type()
587 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_rethrow()
604 globals->caughtExceptions = 0; in __cxa_rethrow()
676 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_current_primary_exception()