Home
last modified time | relevance | path

Searched refs:methodIdx (Results 1 – 11 of 11) 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.cpp241 u4 methodIdx) { in verifyMethodDefiner() argument
242 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); in verifyMethodDefiner()
1105 SWAP_INDEX4(item->methodIdx, state->pHeader->methodIdsSize); in swapMethodAnnotations()
1110 } else if (lastIdx >= item->methodIdx) { in swapMethodAnnotations()
1112 item->methodIdx); in swapMethodAnnotations()
1116 lastIdx = item->methodIdx; in swapMethodAnnotations()
1135 SWAP_INDEX4(item->methodIdx, state->pHeader->methodIdsSize); in swapParameterAnnotations()
1140 } else if (lastIdx >= item->methodIdx) { in swapParameterAnnotations()
1142 item->methodIdx); in swapParameterAnnotations()
1146 lastIdx = item->methodIdx; in swapParameterAnnotations()
[all …]
DDexFile.h393 u4 methodIdx; member
401 u4 methodIdx; member
/dalvik/dexdump/
DDexDump.cpp622 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpPositions()
648 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpLocals()
659 bool getMethodInfo(DexFile* pDexFile, u4 methodIdx, FieldMethodInfo* pMethInfo) in getMethodInfo() argument
663 if (methodIdx >= pDexFile->pHeader->methodIdsSize) in getMethodInfo()
666 pMethodId = dexGetMethodId(pDexFile, methodIdx); in getMethodInfo()
1069 getMethodInfo(pDexFile, pDexMethod->methodIdx, &methInfo); in dumpBytecodes()
1161 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod()
1591 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethodMap()
/dalvik/dexlist/
DDexList.cpp107 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod()