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()
DFieldAnnotationStruct.java87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
93 Hex.u4(annotationsOff)); in writeTo()
97 out.writeInt(annotationsOff); in writeTo()
DMethodAnnotationStruct.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.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()
DFieldAnnotationStruct.java87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
93 Hex.u4(annotationsOff)); in writeTo()
97 out.writeInt(annotationsOff); in writeTo()
DMethodAnnotationStruct.java87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local
93 Hex.u4(annotationsOff)); in writeTo()
97 out.writeInt(annotationsOff); in writeTo()
DParameterAnnotationStruct.java112 int annotationsOff = annotationsItem.getAbsoluteOffset(); in writeTo() local
118 Hex.u4(annotationsOff)); in writeTo()
122 out.writeInt(annotationsOff); in writeTo()
/dalvik/libdex/
DDexFile.h352 u4 annotationsOff; /* file offset to annotations_directory_item */ member
428 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
436 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
444 u4 annotationsOff; /* offset to DexAnotationSetRefList */ member
451 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
778 if (pClassDef->annotationsOff == 0) in dexGetAnnotationsDirectoryItem()
781 (pDexFile->baseAddr + pClassDef->annotationsOff); in dexGetAnnotationsDirectoryItem()
890 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetFieldAnnotationSetItem()
922 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetMethodAnnotationSetItem()
955 if (pItem->annotationsOff == 0) { in dexGetParameterAnnotationSetRefList()
[all …]
DDexSwapVerify.cpp885 SWAP_OFFSET4(item->annotationsOff); in swapClassDefItem()
967 item->annotationsOff, kDexTypeAnnotationsDirectoryItem) in crossVerifyClassDefItem()
1030 if (!verifyAnnotationsDirectoryIsForDef(state, item->annotationsOff, in crossVerifyClassDefItem()
1052 SWAP_OFFSET4(item->annotationsOff); in swapFieldAnnotations()
1082 SWAP_OFFSET4(item->annotationsOff); in swapMethodAnnotations()
1113 SWAP_OFFSET4(item->annotationsOff); in swapParameterAnnotations()
1177 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyFieldAnnotations()
1197 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyMethodAnnotations()
1218 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyParameterAnnotations()
1339 SWAP_OFFSET4(item->annotationsOff); in swapAnnotationSetRefList()
[all …]
/dalvik/dexdump/
DDexDump.cpp533 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java671 int annotationsOff = classDef.getAnnotationsOffset(); in transformClassDef() local
672 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff)); in transformClassDef()