HomeSort by relevance Sort by last modified time
    Searched defs:encodedCatchHandler (Results 1 - 2 of 2) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TryListBuilder.java 136 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/
CodeItem.java 50 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 at index " + i)
    [all...]

Completed in 54 milliseconds