Lines Matching refs:caughtExceptions
408 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
410 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
411 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
422 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
425 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
457 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
473 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
486 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
511 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
512 globals->caughtExceptions = 0; in __cxa_end_catch()
525 __cxa_exception *exception_header = globals->caughtExceptions; in __cxa_current_exception_type()
550 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_rethrow()
567 globals->caughtExceptions = 0; in __cxa_rethrow()
643 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_current_primary_exception()