Home
last modified time | relevance | path

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

/external/libcxxabi/src/
Dcxa_exception.cpp99 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()
Dcxa_exception.hpp46 int handlerCount; member
84 int handlerCount; member
Dcxa_personality.cpp1257 new_exception_header->handlerCount = -new_exception_header->handlerCount; in __cxa_call_unexpected()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DCodeItem.java206 int handlerCount = reader.readSleb128(); in makeAnnotator() local
207 out.annotateTo(reader.getOffset(), "size = %d", handlerCount); in makeAnnotator() local
208 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()
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DMethodWriter.java278 private int handlerCount; field in MethodWriter
735 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()