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.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/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()
846 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetFieldAnnotationSetItem()
876 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetMethodAnnotationSetItem()
907 if (pItem->annotationsOff == 0) { in dexGetParameterAnnotationSetRefList()
[all …]
DDexSwapVerify.cpp911 SWAP_OFFSET4(item->annotationsOff); in swapClassDefItem()
987 item->annotationsOff, kDexTypeAnnotationsDirectoryItem) in crossVerifyClassDefItem()
1050 if (!verifyAnnotationsDirectoryIsForDef(state, item->annotationsOff, in crossVerifyClassDefItem()
1071 SWAP_OFFSET4(item->annotationsOff); in swapFieldAnnotations()
1100 SWAP_OFFSET4(item->annotationsOff); in swapMethodAnnotations()
1130 SWAP_OFFSET4(item->annotationsOff); in swapParameterAnnotations()
1194 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyFieldAnnotations()
1214 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyMethodAnnotations()
1235 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyParameterAnnotations()
1352 SWAP_OFFSET4(item->annotationsOff); in swapAnnotationSetRefList()
[all …]
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java657 int annotationsOff = classDef.getAnnotationsOffset(); in transformClassDef() local
658 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff)); in transformClassDef()
/dalvik/dexdump/
DDexDump.cpp529 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()