Searched refs:annotations_off_ (Results 1 – 5 of 5) sorted by relevance
/art/libdexfile/dex/ |
D | dex_file_structs.h | 116 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
|
D | dex_file.h | 555 return DataPointer<dex::AnnotationsDirectoryItem>(class_def.annotations_off_); in GetAnnotationsDirectory() 595 return DataPointer<dex::AnnotationSetItem>(anno_item.annotations_off_); in GetFieldAnnotationSetItem() 600 return DataPointer<dex::AnnotationSetItem>(anno_item.annotations_off_); in GetMethodAnnotationSetItem() 605 return DataPointer<dex::AnnotationSetRefList>(anno_item->annotations_off_); in GetParameterAnnotationSetRefList() 633 return DataPointer<dex::AnnotationSetItem>(anno_item->annotations_off_); in GetSetRefItemItem()
|
D | dex_file_verifier.cc | 2736 if (item->annotations_off_ != 0 && in CheckInterClassDefItem() 2737 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationsDirectoryItem)) { in CheckInterClassDefItem() 2851 if (item->annotations_off_ != 0) { in CheckInterClassDefItem() 2853 if (!IsAlignedParam(item->annotations_off_, 4)) { in CheckInterClassDefItem() 2857 const uint8_t* data = begin_ + item->annotations_off_; in CheckInterClassDefItem() 2931 if (item->annotations_off_ != 0 && in CheckInterAnnotationSetRefList() 2932 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationSetRefList() 3061 if (!CheckOffsetToTypeMap(field_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem() 3079 if (!CheckOffsetToTypeMap(method_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem() 3097 if (!CheckOffsetToTypeMap(parameter_item->annotations_off_, in CheckInterAnnotationsDirectoryItem()
|
/art/dexlayout/ |
D | dex_ir_builder.cc | 495 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/ |
D | dexdump.cc | 646 pClassDef.annotations_off_, pClassDef.annotations_off_); in dumpClassDef()
|