Searched refs:handlerCount (Results 1 – 5 of 5) sorted by relevance
99 return ++exception->handlerCount; in incrementHandlerCount()104 return --exception->handlerCount; in decrementHandlerCount()402 exception_header->handlerCount = exception_header->handlerCount < 0 ? in __cxa_begin_catch()403 -exception_header->handlerCount + 1 : exception_header->handlerCount + 1; in __cxa_begin_catch()455 static_assert(offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()456 offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()470 if (exception_header->handlerCount < 0) in __cxa_end_catch()560 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
46 int handlerCount; member84 int handlerCount; member
1257 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
206 int handlerCount = reader.readSleb128(); in makeAnnotator() local207 out.annotateTo(reader.getOffset(), "size = %d", handlerCount); in makeAnnotator() local208 boolean hasCatchAll = handlerCount <= 0; in makeAnnotator()209 handlerCount = Math.abs(handlerCount); in makeAnnotator()210 if (handlerCount != 0) { in makeAnnotator()214 for (int j=0; j<handlerCount; j++) { in makeAnnotator()
278 private int handlerCount; field in MethodWriter735 if (opcode >= Opcodes.ISTORE && compute == FRAMES && handlerCount > 0) { in visitVarInsn()1143 ++handlerCount; in visitTryCatchBlock()1799 size += 18 + code.length + 8 * handlerCount;1926 int size = 12 + code.length + 8 * handlerCount; in put()1949 out.putShort(handlerCount); in put()1950 if (handlerCount > 0) { in put()