Lines Matching refs:globals
263 __cxa_eh_globals* globals = __cxa_get_globals(); in throwException() local
266 globals->uncaughtExceptions += 1; in throwException()
339 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_rethrow() local
340 __cxa_exception* header = globals->caughtExceptions; in __cxa_rethrow()
350 globals->caughtExceptions = 0; in __cxa_rethrow()
359 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_begin_catch() local
362 if (globals->caughtExceptions) { in __cxa_begin_catch()
371 if (header != globals->caughtExceptions) { in __cxa_begin_catch()
372 header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
373 globals->caughtExceptions = header; in __cxa_begin_catch()
375 globals->uncaughtExceptions -= 1; in __cxa_begin_catch()
381 __cxa_eh_globals *globals = __cxa_get_globals_fast(); in __cxa_end_catch() local
382 __cxa_exception *header = globals->caughtExceptions; in __cxa_end_catch()
390 globals->caughtExceptions = 0; in __cxa_end_catch()
398 globals->caughtExceptions = header->nextException; in __cxa_end_catch()
401 globals->caughtExceptions = header->nextException; in __cxa_end_catch()
419 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_uncaught_exception() local
420 if (globals == NULL) in __cxa_uncaught_exception()
422 return globals->uncaughtExceptions == 0; in __cxa_uncaught_exception()