Home
last modified time | relevance | path

Searched refs:methodIdx (Results 1 – 12 of 12) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
DMethodAnnotationStruct.java86 int methodIdx = file.getMethodIds().indexOf(method); in writeTo() local
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); in writeTo()
96 out.writeInt(methodIdx); in writeTo()
DEncodedMethod.java161 int methodIdx = file.getMethodIds().indexOf(method); in encode() local
162 int diff = methodIdx - lastIndex; in encode()
182 " method_idx: " + Hex.u4(methodIdx)); in encode()
194 return methodIdx; in encode()
DParameterAnnotationStruct.java110 int methodIdx = file.getMethodIds().indexOf(method); in writeTo() local
115 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); in writeTo()
120 out.writeInt(methodIdx); in writeTo()
/dalvik/dx/src/com/android/dx/dex/file/
DMethodAnnotationStruct.java86 int methodIdx = file.getMethodIds().indexOf(method); in writeTo() local
91 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); in writeTo()
96 out.writeInt(methodIdx); in writeTo()
DEncodedMethod.java160 int methodIdx = file.getMethodIds().indexOf(method); in encode() local
161 int diff = methodIdx - lastIndex; in encode()
181 " method_idx: " + Hex.u4(methodIdx)); in encode()
193 return methodIdx; in encode()
DParameterAnnotationStruct.java111 int methodIdx = file.getMethodIds().indexOf(method); in writeTo() local
116 out.annotate(4, " method_idx: " + Hex.u4(methodIdx)); in writeTo()
121 out.writeInt(methodIdx); in writeTo()
/dalvik/libdex/
DDexClass.h43 u4 methodIdx; /* index to a method_id_item */ member
158 pMethod->methodIdx = index; in dexReadClassDataMethod()
DDexSwapVerify.cpp217 u4 methodIdx) { in verifyMethodDefiner() argument
218 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); in verifyMethodDefiner()
1133 SWAP_INDEX4(item->methodIdx, state->pHeader->methodIdsSize); in swapMethodAnnotations()
1138 } else if (lastIdx >= item->methodIdx) { in swapMethodAnnotations()
1140 item->methodIdx); in swapMethodAnnotations()
1144 lastIdx = item->methodIdx; in swapMethodAnnotations()
1164 SWAP_INDEX4(item->methodIdx, state->pHeader->methodIdsSize); in swapParameterAnnotations()
1169 } else if (lastIdx >= item->methodIdx) { in swapParameterAnnotations()
1171 item->methodIdx); in swapParameterAnnotations()
1175 lastIdx = item->methodIdx; in swapParameterAnnotations()
[all …]
DDexFile.h461 u4 methodIdx; member
469 u4 methodIdx; member
/dalvik/dx/src/com/android/dx/dex/code/form/
DForm4rcc.java75 int methodIdx = mci.getIndex(0); in isCompatible() local
77 if (!unsignedFitsInShort(methodIdx) || !unsignedFitsInShort(protoIdx)) { in isCompatible()
DForm45cc.java85 int methodIdx = mci.getIndex(0); in isCompatible() local
87 if (!unsignedFitsInShort(methodIdx) || !unsignedFitsInShort(protoIdx)) { in isCompatible()
/dalvik/dexdump/
DDexDump.cpp630 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpPositions()
656 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpLocals()
667 bool getMethodInfo(DexFile* pDexFile, u4 methodIdx, FieldMethodInfo* pMethInfo) in getMethodInfo() argument
671 if (methodIdx >= pDexFile->pHeader->methodIdsSize) in getMethodInfo()
674 pMethodId = dexGetMethodId(pDexFile, methodIdx); in getMethodInfo()
1186 getMethodInfo(pDexFile, pDexMethod->methodIdx, &methInfo); in dumpBytecodes()
1278 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod()
1708 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethodMap()