Searched refs:EncodedCatchHandler (Results 1 - 3 of 3) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DTryListBuilder.java136 public Pair<List<CodeItem.TryItem>, List<CodeItem.EncodedCatchHandler>> encodeTries() {
138 return new Pair<List<CodeItem.TryItem>, List<CodeItem.EncodedCatchHandler>>(null, null);
142 ArrayList<CodeItem.EncodedCatchHandler> handlers = new ArrayList<CodeItem.EncodedCatchHandler>();
144 HashMap<CodeItem.EncodedCatchHandler, CodeItem.EncodedCatchHandler> handlerDict =
145 new HashMap<CodeItem.EncodedCatchHandler, CodeItem.EncodedCatchHandler>();
161 CodeItem.EncodedCatchHandler encodedCatchHandler = new CodeItem.EncodedCatchHandler(
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DCodeItem.java50 private EncodedCatchHandler[] encodedCatchHandlers;
80 EncodedCatchHandler[] encodedCatchHandlers) {
115 List<EncodedCatchHandler> encodedCatchHandlers) {
117 EncodedCatchHandler[] encodedCatchHandlersArray = null;
126 encodedCatchHandlersArray = new EncodedCatchHandler[encodedCatchHandlers.size()];
177 SparseArray<EncodedCatchHandler> handlerMap = new SparseArray<EncodedCatchHandler>(handlerCount);
178 encodedCatchHandlers = new EncodedCatchHandler[handlerCount];
182 encodedCatchHandlers[i] = new EncodedCatchHandler(dexFile, in);
185 throw ExceptionWithContext.withContext(ex, "Error while reading EncodedCatchHandler a
813 public static class EncodedCatchHandler { class in class:CodeItem
834 public EncodedCatchHandler(EncodedTypeAddrPair[] handlers, int catchAllHandlerAddress) { method in class:CodeItem.EncodedCatchHandler
845 private EncodedCatchHandler(DexFile dexFile, Input in) { method in class:CodeItem.EncodedCatchHandler
[all...]
/external/smali/smali/src/main/antlr3/org/jf/smali/
H A DsmaliTreeWalker.g509 Pair<List<CodeItem.TryItem>, List<CodeItem.EncodedCatchHandler>> temp = $method::tryList.encodeTries();
511 List<CodeItem.EncodedCatchHandler> handlers = temp.second;

Completed in 334 milliseconds