Home
last modified time | relevance | path

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

/external/libcxxabi/src/
Dcxa_exception.cpp406 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
408 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
409 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
420 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
423 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
460 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
476 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
489 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
514 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
515 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.cpp1232 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()