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

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DCodeItem.java50 private EncodedCatchHandler[] encodedCatchHandlers; field in class:CodeItem
71 * @param encodedCatchHandlers an array of the exception handlers defined for this code/method
80 EncodedCatchHandler[] encodedCatchHandlers) {
93 this.encodedCatchHandlers = encodedCatchHandlers;
105 * @param encodedCatchHandlers a list of the exception handlers defined for this code/method or null if none
115 List<EncodedCatchHandler> encodedCatchHandlers) {
125 if (encodedCatchHandlers != null && encodedCatchHandlers.size() > 0) {
126 encodedCatchHandlersArray = new EncodedCatchHandler[encodedCatchHandlers
73 CodeItem(DexFile dexFile, int registerCount, int inWords, int outWords, DebugInfoItem debugInfo, Instruction[] instructions, TryItem[] tries, EncodedCatchHandler[] encodedCatchHandlers) argument
108 internCodeItem(DexFile dexFile, int registerCount, int inWords, int outWords, DebugInfoItem debugInfo, List<Instruction> instructions, List<TryItem> tries, List<EncodedCatchHandler> encodedCatchHandlers) argument
771 TryItem(Input in, SparseArray<EncodedCatchHandler> encodedCatchHandlers) argument
[all...]

Completed in 55 milliseconds