Lines Matching refs:caughtExceptions
441 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
443 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
444 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
455 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
458 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
495 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
511 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
524 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
549 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
550 globals->caughtExceptions = 0; in __cxa_end_catch()
563 __cxa_exception *exception_header = globals->caughtExceptions; in __cxa_current_exception_type()
585 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_rethrow()
602 globals->caughtExceptions = 0; in __cxa_rethrow()
674 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_current_primary_exception()