Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/gabi++/src/
Dcxxabi.cc195 __cxa_exception* header = globals->caughtExceptions; in __cxa_rethrow()
204 globals->caughtExceptions = 0; in __cxa_rethrow()
217 if (globals->caughtExceptions) { in __cxa_begin_catch()
226 if (header != globals->caughtExceptions) { in __cxa_begin_catch()
227 header->nextException = globals->caughtExceptions; in __cxa_begin_catch()
228 globals->caughtExceptions = header; in __cxa_begin_catch()
237 __cxa_exception *header = globals->caughtExceptions; in __cxa_end_catch()
245 globals->caughtExceptions = 0; in __cxa_end_catch()
253 globals->caughtExceptions = header->nextException; in __cxa_end_catch()
256 globals->caughtExceptions = header->nextException; in __cxa_end_catch()
Dcall_unexpected.cc220 __cxa_exception* new_header = __cxa_get_globals()->caughtExceptions; in __cxa_call_unexpected()
292 __cxa_exception* new_exception_header = globals->caughtExceptions; in __cxa_call_unexpected()
/ndk/sources/cxx-stl/gabi++/include/
Dcxxabi.h310 __cxa_exception* caughtExceptions; member