Home | History | Annotate | Download | only in src

Lines Matching refs:caughtExceptions

408         if (exception_header != globals->caughtExceptions)
410 exception_header->nextException = globals->caughtExceptions;
411 globals->caughtExceptions = exception_header;
421 // If the caughtExceptions stack is not empty, terminate
422 if (globals->caughtExceptions != 0)
425 globals->caughtExceptions = exception_header;
457 __cxa_exception* exception_header = globals->caughtExceptions;
458 // If we've rethrown a foreign exception, then globals->caughtExceptions
473 globals->caughtExceptions = exception_header->nextException;
486 globals->caughtExceptions = exception_header->nextException;
511 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader);
512 globals->caughtExceptions = 0;
525 __cxa_exception *exception_header = globals->caughtExceptions;
536 * marks the exception object on top of the caughtExceptions stack
538 * If the caughtExceptions stack is empty, it calls terminate()
550 __cxa_exception* exception_header = globals->caughtExceptions;
559 // __cxa_end_catch will remove this exception from the caughtExceptions stack if necessary
567 globals->caughtExceptions = 0;
628 caughtExceptions stack. Atomically increment the exception's referenceCount.
643 __cxa_exception* exception_header = globals->caughtExceptions;