Searched refs:handlerCount (Results 1 – 5 of 5) sorted by relevance
101 return ++exception->handlerCount; in incrementHandlerCount()106 return --exception->handlerCount; in decrementHandlerCount()423 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()424 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()476 static_assert(__builtin_offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()477 __builtin_offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()491 if (exception_header->handlerCount < 0) in __cxa_end_catch()578 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
44 int handlerCount; member81 int handlerCount; member
1266 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
203 int handlerCount = reader.readSleb128(); in makeAnnotator() local204 out.annotateTo(reader.getOffset(), "size = %d", handlerCount); in makeAnnotator() local205 boolean hasCatchAll = handlerCount <= 0; in makeAnnotator()206 handlerCount = Math.abs(handlerCount); in makeAnnotator()207 if (handlerCount != 0) { in makeAnnotator()211 for (int j=0; j<handlerCount; j++) { in makeAnnotator()
148 org/objectweb/asm/MethodWriter.handlerCount=A