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 | FieldAnnotationStruct.java | 87 int annotationsOff = annotations.getAbsoluteOffset(); in writeTo() local 93 Hex.u4(annotationsOff)); in writeTo() 97 out.writeInt(annotationsOff); in writeTo()
|
D | MethodAnnotationStruct.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 | 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 | 112 int annotationsOff = annotationsItem.getAbsoluteOffset(); in writeTo() local 118 Hex.u4(annotationsOff)); in writeTo() 122 out.writeInt(annotationsOff); in writeTo()
|
/dalvik/libdex/ |
D | DexFile.h | 347 u4 annotationsOff; /* file offset to annotations_directory_item */ member 423 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member 431 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member 439 u4 annotationsOff; /* offset to DexAnotationSetRefList */ member 446 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member 773 if (pClassDef->annotationsOff == 0) in dexGetAnnotationsDirectoryItem() 776 (pDexFile->baseAddr + pClassDef->annotationsOff); in dexGetAnnotationsDirectoryItem() 885 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetFieldAnnotationSetItem() 917 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetMethodAnnotationSetItem() 950 if (pItem->annotationsOff == 0) { in dexGetParameterAnnotationSetRefList() [all …]
|
D | DexSwapVerify.cpp | 885 SWAP_OFFSET4(item->annotationsOff); in swapClassDefItem() 967 item->annotationsOff, kDexTypeAnnotationsDirectoryItem) in crossVerifyClassDefItem() 1030 if (!verifyAnnotationsDirectoryIsForDef(state, item->annotationsOff, in crossVerifyClassDefItem() 1051 SWAP_OFFSET4(item->annotationsOff); in swapFieldAnnotations() 1080 SWAP_OFFSET4(item->annotationsOff); in swapMethodAnnotations() 1110 SWAP_OFFSET4(item->annotationsOff); in swapParameterAnnotations() 1174 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyFieldAnnotations() 1194 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyMethodAnnotations() 1215 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyParameterAnnotations() 1332 SWAP_OFFSET4(item->annotationsOff); in swapAnnotationSetRefList() [all …]
|
/dalvik/dx/src/com/android/dx/merge/ |
D | DexMerger.java | 660 int annotationsOff = classDef.getAnnotationsOffset(); in transformClassDef() local 661 idsDefsOut.writeInt(indexMap.adjustAnnotationDirectory(annotationsOff)); in transformClassDef()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 532 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()
|