Searched refs:annotationsOff (Results 1 – 7 of 7) sorted by relevance
/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 | 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/libdex/ |
D | DexFile.h | 287 u4 annotationsOff; /* file offset to annotations_directory_item */ member 363 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member 371 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member 379 u4 annotationsOff; /* offset to DexAnotationSetRefList */ member 386 u4 annotationsOff; /* offset to DexAnnotationSetItem */ member 711 if (pClassDef->annotationsOff == 0) in dexGetAnnotationsDirectoryItem() 714 (pDexFile->baseAddr + pClassDef->annotationsOff); in dexGetAnnotationsDirectoryItem() 845 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetFieldAnnotationSetItem() 875 return dexGetAnnotationSetItem(pDexFile, pItem->annotationsOff); in dexGetMethodAnnotationSetItem() 907 (pDexFile->baseAddr + pItem->annotationsOff); in dexGetParameterAnnotationSetRefList() [all …]
|
D | DexSwapVerify.c | 875 SWAP_OFFSET4(item->annotationsOff); in swapClassDefItem() 945 item->annotationsOff, kDexTypeAnnotationsDirectoryItem) in crossVerifyClassDefItem() 1008 if (!verifyAnnotationsDirectoryIsForDef(state, item->annotationsOff, in crossVerifyClassDefItem() 1029 SWAP_OFFSET4(item->annotationsOff); in swapFieldAnnotations() 1058 SWAP_OFFSET4(item->annotationsOff); in swapMethodAnnotations() 1088 SWAP_OFFSET4(item->annotationsOff); in swapParameterAnnotations() 1152 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyFieldAnnotations() 1172 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyMethodAnnotations() 1193 if (!dexDataMapVerify(state->pDataMap, item->annotationsOff, in crossVerifyParameterAnnotations() 1310 SWAP_OFFSET4(item->annotationsOff); in swapAnnotationSetRefList() [all …]
|
/dalvik/dexdump/ |
D | DexDump.c | 416 pClassDef->annotationsOff, pClassDef->annotationsOff); in dumpClassDef()
|