Home
last modified time | relevance | path

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

/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/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/libdex/
DDexFile.h310 u4 annotationsOff; /* file offset to annotations_directory_item */ member
386 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
394 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
402 u4 annotationsOff; /* offset to DexAnotationSetRefList */ member
409 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member
736 if (pClassDef->annotationsOff == 0) in dexGetAnnotationsDirectoryItem()
739 (pDexFile->baseAddr + pClassDef->annotationsOff); in dexGetAnnotationsDirectoryItem()
848 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetFieldAnnotationSetItem()
880 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetMethodAnnotationSetItem()
913 if (pItem->annotationsOff == 0) { in dexGetParameterAnnotationSetRefList()
[all …]
DDexSwapVerify.cpp911 SWAP_OFFSET4(item->annotationsOff); in swapClassDefItem()
993 item->annotationsOff, kDexTypeAnnotationsDirectoryItem) in crossVerifyClassDefItem()
1056 if (!verifyAnnotationsDirectoryIsForDef(state, item->annotationsOff, in crossVerifyClassDefItem()
1077 SWAP_OFFSET4(item->annotationsOff); in swapFieldAnnotations()
1106 SWAP_OFFSET4(item->annotationsOff); in swapMethodAnnotations()
1136 SWAP_OFFSET4(item->annotationsOff); in swapParameterAnnotations()
1200 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyFieldAnnotations()
1220 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyMethodAnnotations()
1241 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyParameterAnnotations()
1358 SWAP_OFFSET4(item->annotationsOff); in swapAnnotationSetRefList()
[all …]
/dalvik/dexdump/
DDexDump.cpp532 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java673 int annotationsOff = classDef.getAnnotationsOffset(); in transformClassDef() local
674 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff)); in transformClassDef()