Lines Matching defs:globals

194 	__cxa_eh_globals globals;
334 __cxa_eh_globals *globals = __cxa_get_globals();
335 __cxa_exception *ex = globals->caughtExceptions;
421 if (info->globals.caughtExceptions)
426 _Unwind_Exception *e = reinterpret_cast<_Unwind_Exception*>(info->globals.caughtExceptions);
432 free_exception_list(info->globals.caughtExceptions);
504 return &(thread_info()->globals);
512 return &(thread_info_fast()->globals);
793 info->globals.uncaughtExceptions++;
852 __cxa_eh_globals* globals = __cxa_get_globals();
853 __cxa_exception *ex = globals->caughtExceptions;
885 __cxa_eh_globals *globals = &ti->globals;
891 __cxa_exception *ex = globals->caughtExceptions;
911 // `globals->uncaughtExceptions` was decremented by `__cxa_begin_catch`.
916 globals->uncaughtExceptions++;
1262 __cxa_eh_globals *globals = &ti->globals;
1269 globals->uncaughtExceptions--;
1277 ex->nextException = globals->caughtExceptions;
1278 globals->caughtExceptions = ex;
1316 if (globals->caughtExceptions != 0)
1320 globals->caughtExceptions = reinterpret_cast<__cxa_exception*>(exceptionObject);
1339 __cxa_eh_globals *globals = &ti->globals;
1340 __cxa_exception *ex = globals->caughtExceptions;
1348 _Unwind_Exception *e = reinterpret_cast<_Unwind_Exception*>(ti->globals.caughtExceptions);
1352 globals->caughtExceptions = 0;
1387 globals->caughtExceptions = ex->nextException;
1400 __cxa_eh_globals *globals = __cxa_get_globals();
1401 __cxa_exception *ex = globals->caughtExceptions;
1569 return info->globals.uncaughtExceptions != 0;
1578 return info->globals.uncaughtExceptions;