Searched refs:handlerCount (Results 1 – 6 of 6) sorted by relevance
99 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()
46 int handlerCount; member84 int handlerCount; member
1267 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
348 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()
310 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
287 int handlerCount; member