Searched defs:handlerAddress (Results 1 - 3 of 3) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DCatchMethodItem.java44 int startAddress, int endAddress, int handlerAddress) {
55 handlerLabel = labelCache.internLabel(new LabelMethodItem(handlerAddress, "catchall_"));
57 handlerLabel = labelCache.internLabel(new LabelMethodItem(handlerAddress, "catch_"));
43 CatchMethodItem(MethodDefinition.LabelCache labelCache, int codeAddress, TypeIdItem exceptionType, int startAddress, int endAddress, int handlerAddress) argument
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTryListBuilder.java128 public final int handlerAddress; field in class:TryListBuilder.Handler
130 public Handler(TypeIdItem type, int handlerAddress) { argument
132 this.handlerAddress = handlerAddress;
157 handler.handlerAddress);
184 public void addCatchAllHandler(int startAddress, int endAddress, int handlerAddress) { argument
209 tryRange.catchAllHandlerAddress = handlerAddress;
315 public void addHandler(TypeIdItem type, int startAddress, int endAddress, int handlerAddress) { argument
324 Handler handler = new Handler(type, handlerAddress);
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DCodeItem.java636 assert newAddressByOriginalAddress.indexOfKey(handler.handlerAddress) >= 0;
637 handler.handlerAddress = newAddressByOriginalAddress.get(handler.handlerAddress);
1013 private int handlerAddress; field in class:CodeItem.EncodedTypeAddrPair
1018 * @param handlerAddress the address (in 2-byte words) in the code of the handler
1020 public EncodedTypeAddrPair(TypeIdItem exceptionType, int handlerAddress) { argument
1022 this.handlerAddress = handlerAddress;
1033 handlerAddress = in.readUnsignedLeb128();
1041 Leb128Utils.unsignedLeb128Size(handlerAddress);
[all...]

Completed in 48 milliseconds