Home
last modified time | relevance | path

Searched refs:handlerCount (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
Dcxa_exception.cpp99 return ++exception->handlerCount; in incrementHandlerCount()
104 return --exception->handlerCount; in decrementHandlerCount()
404 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()
405 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()
454 …static_assert(offsetof(__cxa_exception, handlerCount) == offsetof(__cxa_dependent_exception, handl… in __cxa_end_catch()
467 if (exception_header->handlerCount < 0) in __cxa_end_catch()
557 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
Dcxa_exception.hpp46 int handlerCount; member
84 int handlerCount; member
Dcxa_personality.cpp1267 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
/ndk/sources/cxx-stl/gabi++/src/
Dcxxabi.cc348 header->handlerCount = -header->handlerCount; // Set rethrow flag in __cxa_rethrow()
368 header->handlerCount = (header->handlerCount < 0) ? in __cxa_begin_catch()
369 (-header->handlerCount+1) : (header->handlerCount+1); in __cxa_begin_catch()
395 int count = header->handlerCount; in __cxa_end_catch()
408 header->handlerCount = count; in __cxa_end_catch()
Dcall_unexpected.cc310 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
Dcxxabi_defines.h287 int handlerCount; member