Home
last modified time | relevance | path

Searched refs:globals (Results 1 – 9 of 9) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_exception.cpp225 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_throw() local
234 globals->uncaughtExceptions += 1; // Not atomically, since globals are thread-local in __cxa_throw()
279 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_begin_cleanup() local
287 exception_header->nextPropagatingException = globals->propagatingExceptions; in __cxa_begin_cleanup()
288 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup()
296 if (NULL != globals->propagatingExceptions) in __cxa_begin_cleanup()
298 globals->propagatingExceptions = exception_header; in __cxa_begin_cleanup()
317 __cxa_eh_globals* globals = __cxa_get_globals(); in __cxa_end_cleanup_impl() local
318 __cxa_exception* exception_header = globals->propagatingExceptions; in __cxa_end_cleanup_impl()
331 globals->propagatingExceptions = exception_header->nextPropagatingException; in __cxa_end_cleanup_impl()
[all …]
Dcxa_handlers.cpp87 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in terminate() local
88 if (globals) in terminate()
90 __cxa_exception* exception_header = globals->caughtExceptions; in terminate()
Dcxa_default_handlers.cpp29 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in default_terminate_handler() local
30 if (globals) in default_terminate_handler()
32 __cxa_exception* exception_header = globals->caughtExceptions; in default_terminate_handler()
Dcxa_personality.cpp1241 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in __cxa_call_unexpected() local
1242 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()
1268 globals->uncaughtExceptions += 1; in __cxa_call_unexpected()
/ndk/sources/cxx-stl/gabi++/src/
Dcxxabi.cc263 __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()
[all …]
Dcall_unexpected.cc135 __cxa_eh_globals *globals = __cxa_get_globals(); in __cxa_begin_cleanup() local
142 header->nextCleanup = globals->cleanupExceptions; in __cxa_begin_cleanup()
143 globals->cleanupExceptions = header; in __cxa_begin_cleanup()
146 globals->cleanupExceptions = header; in __cxa_begin_cleanup()
153 __cxa_eh_globals *globals = __cxa_get_globals(); in helper_end_cleanup() local
154 __cxa_exception* header = globals->cleanupExceptions; in helper_end_cleanup()
163 globals->cleanupExceptions = header->nextCleanup; in helper_end_cleanup()
167 globals->cleanupExceptions = NULL; in helper_end_cleanup()
292 __cxa_eh_globals* globals = __cxa_get_globals_fast(); in __cxa_call_unexpected() local
293 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()
[all …]
Dexception.cc63 __cxa_eh_globals* globals = __cxa_get_globals(); in uncaught_exception() local
64 return globals->uncaughtExceptions != 0; in uncaught_exception()
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk3989 $(call gen-test, utilities/memory/default.allocator/allocator.globals/eq)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk3998 $(call gen-test, utilities/memory/default.allocator/allocator.globals/eq)