Home
last modified time | relevance | path

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

/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationSetRefItem.java72 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo0() local
75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff)); in writeTo0()
78 out.writeInt(annotationsOff); in writeTo0()
DMethodAnnotationStruct.java87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
93 Hex.u4(annotationsOff)); in writeTo()
97 out.writeInt(annotationsOff); in writeTo()
DFieldAnnotationStruct.java87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
93 Hex.u4(annotationsOff)); in writeTo()
97 out.writeInt(annotationsOff); in writeTo()
DParameterAnnotationStruct.java111 int annotationsOff = annotationsItem.getAbsoluteOffset(); in writeTo() local
117 Hex.u4(annotationsOff)); in writeTo()
121 out.writeInt(annotationsOff); in writeTo()
/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationSetRefItem.java73 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo0() local
76 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff)); in writeTo0()
79 out.writeInt(annotationsOff); in writeTo0()
DMethodAnnotationStruct.java90 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
96 Hex.u4(annotationsOff)); in writeTo()
100 out.writeInt(annotationsOff); in writeTo()
DFieldAnnotationStruct.java90 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
96 Hex.u4(annotationsOff)); in writeTo()
100 out.writeInt(annotationsOff); in writeTo()
DParameterAnnotationStruct.java114 int annotationsOff = annotationsItem.getAbsoluteOffset(); in writeTo() local
120 Hex.u4(annotationsOff)); in writeTo()
124 out.writeInt(annotationsOff); in writeTo()
/dalvik/libdex/
DDexFile.h372 u4 annotationsOff; /* file offset to annotations_directory_item */ member
480 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
488 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
496 u4 annotationsOff; /* offset to DexAnotationSetRefList */ member
503 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
830 if (pClassDef->annotationsOff == 0) in dexGetAnnotationsDirectoryItem()
833 (pDexFile->baseAddr + pClassDef->annotationsOff); in dexGetAnnotationsDirectoryItem()
942 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetFieldAnnotationSetItem()
974 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetMethodAnnotationSetItem()
1007 if (pItem->annotationsOff == 0) { in dexGetParameterAnnotationSetRefList()
[all …]
DDexSwapVerify.cpp895 SWAP_OFFSET4(item->annotationsOff); in swapClassDefItem()
977 item->annotationsOff, kDexTypeAnnotationsDirectoryItem) in crossVerifyClassDefItem()
1040 if (!verifyAnnotationsDirectoryIsForDef(state, item->annotationsOff, in crossVerifyClassDefItem()
1112 SWAP_OFFSET4(item->annotationsOff); in swapFieldAnnotations()
1142 SWAP_OFFSET4(item->annotationsOff); in swapMethodAnnotations()
1173 SWAP_OFFSET4(item->annotationsOff); in swapParameterAnnotations()
1257 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyFieldAnnotations()
1277 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyMethodAnnotations()
1298 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyParameterAnnotations()
1419 SWAP_OFFSET4(item->annotationsOff); in swapAnnotationSetRefList()
[all …]
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java740 int annotationsOff = classDef.getAnnotationsOffset(); in transformClassDef() local
741 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff)); in transformClassDef()
/dalvik/dexdump/
DDexDump.cpp533 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()