Searched refs:handlerCount (Results 1 – 5 of 5) 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()457 static_assert(offsetof(__cxa_exception, handlerCount) == in __cxa_end_catch()458 offsetof(__cxa_dependent_exception, handlerCount), in __cxa_end_catch()472 if (exception_header->handlerCount < 0) in __cxa_end_catch()562 exception_header->handlerCount = -exception_header->handlerCount; in __cxa_rethrow()
46 int handlerCount; member84 int handlerCount; member
1255 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()
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()