Home
last modified time | relevance | path

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

/external/libcxxabi/src/
Dcxa_exception.cpp443 if (exception_header != globals->caughtExceptions) in __cxa_begin_catch()
445 exception_header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
446 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
457 if (globals->caughtExceptions != 0) in __cxa_begin_catch()
460 globals->caughtExceptions = exception_header; in __cxa_begin_catch()
497 __cxa_exception* exception_header = globals->caughtExceptions; in __cxa_end_catch()
513 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
526 globals->caughtExceptions = exception_header->nextException; in __cxa_end_catch()
551 _Unwind_DeleteException(&globals->caughtExceptions->unwindHeader); in __cxa_end_catch()
552 globals->caughtExceptions = 0; in __cxa_end_catch()
[all …]
Dcxa_handlers.cpp82 __cxa_exception* exception_header = globals->caughtExceptions; in terminate()
Dcxa_exception.hpp105 __cxa_exception * caughtExceptions; member
Dcxa_default_handlers.cpp34 __cxa_exception* exception_header = globals->caughtExceptions; in demangling_terminate_handler()
Dcxa_personality.cpp1263 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()