Home
last modified time | relevance | path

Searched refs:annotations_off_ (Results 1 – 5 of 5) sorted by relevance

/art/libdexfile/dex/
Ddex_file_structs.h116 uint32_t annotations_off_; // file offset to annotations_directory_item member
221 uint32_t annotations_off_; member
229 uint32_t annotations_off_; member
237 uint32_t annotations_off_; member
244 uint32_t annotations_off_; member
Ddex_file.h571 return DataPointer<dex::AnnotationsDirectoryItem>(class_def.annotations_off_); in GetAnnotationsDirectory()
611 return DataPointer<dex::AnnotationSetItem>(anno_item.annotations_off_); in GetFieldAnnotationSetItem()
616 return DataPointer<dex::AnnotationSetItem>(anno_item.annotations_off_); in GetMethodAnnotationSetItem()
621 return DataPointer<dex::AnnotationSetRefList>(anno_item->annotations_off_); in GetParameterAnnotationSetRefList()
649 return DataPointer<dex::AnnotationSetItem>(anno_item->annotations_off_); in GetSetRefItemItem()
Ddex_file_verifier.cc2736 if (item->annotations_off_ != 0 && in CheckInterClassDefItem()
2737 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationsDirectoryItem)) { in CheckInterClassDefItem()
2850 if (item->annotations_off_ != 0) { in CheckInterClassDefItem()
2852 if (!IsAlignedParam(item->annotations_off_, 4)) { in CheckInterClassDefItem()
2856 const uint8_t* data = begin_ + item->annotations_off_; in CheckInterClassDefItem()
2930 if (item->annotations_off_ != 0 && in CheckInterAnnotationSetRefList()
2931 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationSetRefList()
3060 if (!CheckOffsetToTypeMap(field_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem()
3078 if (!CheckOffsetToTypeMap(method_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem()
3096 if (!CheckOffsetToTypeMap(parameter_item->annotations_off_, in CheckInterAnnotationsDirectoryItem()
/art/dexlayout/
Ddex_ir_builder.cc495 dex_file, disk_annotations_directory_item, disk_class_def.annotations_off_); in CreateClassDef()
743 uint32_t annotation_set_offset = fields[i].annotations_off_; in CreateAnnotationsDirectoryItem()
759 uint32_t annotation_set_offset = methods[i].annotations_off_; in CreateAnnotationsDirectoryItem()
776 GenerateParameterAnnotation(dex_file, method_id, list, parameters[i].annotations_off_))); in CreateAnnotationsDirectoryItem()
1250 uint32_t set_offset = annotation_set_ref_list->list_[i].annotations_off_; in GenerateParameterAnnotation()
/art/dexdump/
Ddexdump.cc646 pClassDef.annotations_off_, pClassDef.annotations_off_); in dumpClassDef()