Searched refs:annotationsOff (Results 1 – 12 of 12) sorted by relevance
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | AnnotationSetRefItem.java | 72 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo0() local 75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff)); in writeTo0() 78 out.writeInt(annotationsOff); in writeTo0()
|
D | MethodAnnotationStruct.java | 87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local 93 Hex.u4(annotationsOff)); in writeTo() 97 out.writeInt(annotationsOff); in writeTo()
|
D | FieldAnnotationStruct.java | 87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local 93 Hex.u4(annotationsOff)); in writeTo() 97 out.writeInt(annotationsOff); in writeTo()
|
D | ParameterAnnotationStruct.java | 111 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/ |
D | AnnotationSetRefItem.java | 73 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo0() local 76 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff)); in writeTo0() 79 out.writeInt(annotationsOff); in writeTo0()
|
D | MethodAnnotationStruct.java | 90 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local 96 Hex.u4(annotationsOff)); in writeTo() 100 out.writeInt(annotationsOff); in writeTo()
|
D | FieldAnnotationStruct.java | 90 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local 96 Hex.u4(annotationsOff)); in writeTo() 100 out.writeInt(annotationsOff); in writeTo()
|
D | ParameterAnnotationStruct.java | 114 int annotationsOff = annotationsItem.getAbsoluteOffset(); in writeTo() local 120 Hex.u4(annotationsOff)); in writeTo() 124 out.writeInt(annotationsOff); in writeTo()
|
/dalvik/libdex/ |
D | DexFile.h | 372 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 …]
|
D | DexSwapVerify.cpp | 895 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/ |
D | DexMerger.java | 740 int annotationsOff = classDef.getAnnotationsOffset(); in transformClassDef() local 741 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff)); in transformClassDef()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 533 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()
|