Searched refs:caughtExceptions (Results 1 – 3 of 3) sorted by relevance
195 __cxa_exception* header = globals->caughtExceptions; in __cxa_rethrow()204 globals->caughtExceptions = 0; in __cxa_rethrow()217 if (globals->caughtExceptions) { in __cxa_begin_catch()226 if (header != globals->caughtExceptions) { in __cxa_begin_catch()227 header->nextException = globals->caughtExceptions; in __cxa_begin_catch()228 globals->caughtExceptions = header; in __cxa_begin_catch()237 __cxa_exception *header = globals->caughtExceptions; in __cxa_end_catch()245 globals->caughtExceptions = 0; in __cxa_end_catch()253 globals->caughtExceptions = header->nextException; in __cxa_end_catch()256 globals->caughtExceptions = header->nextException; in __cxa_end_catch()
220 __cxa_exception* new_header = __cxa_get_globals()->caughtExceptions; in __cxa_call_unexpected()292 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()
310 __cxa_exception* caughtExceptions; member