Searched refs:catchAllHandlerAddress (Results 1 - 2 of 2) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTryListBuilder.java63 public int catchAllHandlerAddress; field in class:TryListBuilder.TryRange
71 catchAllHandlerAddress = -1;
107 tryRange.catchAllHandlerAddress = this.catchAllHandlerAddress;
163 tryRange.catchAllHandlerAddress);
208 if (tryRange.catchAllHandlerAddress == -1) {
209 tryRange.catchAllHandlerAddress = handlerAddress;
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DCodeItem.java612 if (encodedCatchHandler.catchAllHandlerAddress != -1) {
613 assert newAddressByOriginalAddress.indexOfKey(encodedCatchHandler.catchAllHandlerAddress) >= 0;
614 encodedCatchHandler.catchAllHandlerAddress =
615 newAddressByOriginalAddress.get(encodedCatchHandler.catchAllHandlerAddress);
823 private int catchAllHandlerAddress; field in class:CodeItem.EncodedCatchHandler
831 * @param catchAllHandlerAddress The address within the code (in 2-byte words) for the catch all handler, or -1
834 public EncodedCatchHandler(EncodedTypeAddrPair[] handlers, int catchAllHandlerAddress) { argument
836 this.catchAllHandlerAddress = catchAllHandlerAddress;
863 catchAllHandlerAddress
[all...]

Completed in 1111 milliseconds