Home
last modified time | relevance | path

Searched refs:caughtExceptions (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_exception.cpp408 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
410 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
411 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
422 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
425 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
457 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
473 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
486 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
511 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
512 globals->caughtExceptions = 0; in __cxa_end_catch()
[all …]
Dcxa_handlers.cpp90 __cxa_exception* exception_header = globals->caughtExceptions; in terminate()
Dcxa_exception.hpp105 __cxa_exception * caughtExceptions; member
Dcxa_default_handlers.cpp32 __cxa_exception* exception_header = globals->caughtExceptions; in default_terminate_handler()
Dcxa_personality.cpp1242 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()
/ndk/sources/cxx-stl/gabi++/src/
Dcxxabi.cc340 __cxa_exception* header = globals->caughtExceptions; in __cxa_rethrow()
350 globals->caughtExceptions = 0; in __cxa_rethrow()
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()
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()
Dcall_unexpected.cc221 __cxa_exception* new_header = __cxa_get_globals()->caughtExceptions; in __cxa_call_unexpected()
293 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()
Dcxxabi_defines.h307 __cxa_exception* caughtExceptions; member