Home
last modified time | relevance | path

Searched refs:methodIdx (Results 1 – 10 of 10) 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.cpp215 u4 methodIdx) { in verifyMethodDefiner() argument
216 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); in verifyMethodDefiner()
1081 SWAP_INDEX4(item->methodIdx, state->pHeader->methodIdsSize); in swapMethodAnnotations()
1086 } else if (lastIdx >= item->methodIdx) { in swapMethodAnnotations()
1088 item->methodIdx); in swapMethodAnnotations()
1092 lastIdx = item->methodIdx; in swapMethodAnnotations()
1112 SWAP_INDEX4(item->methodIdx, state->pHeader->methodIdsSize); in swapParameterAnnotations()
1117 } else if (lastIdx >= item->methodIdx) { in swapParameterAnnotations()
1119 item->methodIdx); in swapParameterAnnotations()
1123 lastIdx = item->methodIdx; in swapParameterAnnotations()
[all …]
DDexFile.h435 u4 methodIdx; member
443 u4 methodIdx; member
/dalvik/dexdump/
DDexDump.cpp623 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpPositions()
649 = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpLocals()
660 bool getMethodInfo(DexFile* pDexFile, u4 methodIdx, FieldMethodInfo* pMethInfo) in getMethodInfo() argument
664 if (methodIdx >= pDexFile->pHeader->methodIdsSize) in getMethodInfo()
667 pMethodId = dexGetMethodId(pDexFile, methodIdx); in getMethodInfo()
1076 getMethodInfo(pDexFile, pDexMethod->methodIdx, &methInfo); in dumpBytecodes()
1168 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethod()
1598 pMethodId = dexGetMethodId(pDexFile, pDexMethod->methodIdx); in dumpMethodMap()