Lines Matching refs:caughtExceptions
406 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
408 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
409 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
420 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
423 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
460 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
476 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
489 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
514 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
515 globals->caughtExceptions = 0; in __cxa_end_catch()
528 __cxa_exception *exception_header = globals->caughtExceptions; in __cxa_current_exception_type()
553 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_rethrow()
570 globals->caughtExceptions = 0; in __cxa_rethrow()
646 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_current_primary_exception()