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 | 552 return DataPointer<dex::AnnotationsDirectoryItem>(class_def.annotations_off_); in GetAnnotationsDirectory() 592 return DataPointer<dex::AnnotationSetItem>(anno_item.annotations_off_); in GetFieldAnnotationSetItem() 597 return DataPointer<dex::AnnotationSetItem>(anno_item.annotations_off_); in GetMethodAnnotationSetItem() 602 return DataPointer<dex::AnnotationSetRefList>(anno_item->annotations_off_); in GetParameterAnnotationSetRefList() 630 return DataPointer<dex::AnnotationSetItem>(anno_item->annotations_off_); in GetSetRefItemItem()
|
D | dex_file_verifier.cc | 2434 if (item->annotations_off_ != 0 && in CheckInterClassDefItem() 2435 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationsDirectoryItem)) { in CheckInterClassDefItem() 2555 if (item->annotations_off_ != 0) { in CheckInterClassDefItem() 2557 if (!IsAlignedParam(item->annotations_off_, 4)) { in CheckInterClassDefItem() 2561 const uint8_t* data = begin_ + item->annotations_off_; in CheckInterClassDefItem() 2672 if (item->annotations_off_ != 0 && in CheckInterAnnotationSetRefList() 2673 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationSetRefList() 2771 if (!CheckOffsetToTypeMap(field_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem() 2788 if (!CheckOffsetToTypeMap(method_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem() 2805 if (!CheckOffsetToTypeMap(parameter_item->annotations_off_, in CheckInterAnnotationsDirectoryItem()
|
/art/dexlayout/ |
D | dex_ir_builder.cc | 494 dex_file, disk_annotations_directory_item, disk_class_def.annotations_off_); in CreateClassDef() 742 uint32_t annotation_set_offset = fields[i].annotations_off_; in CreateAnnotationsDirectoryItem() 758 uint32_t annotation_set_offset = methods[i].annotations_off_; in CreateAnnotationsDirectoryItem() 775 GenerateParameterAnnotation(dex_file, method_id, list, parameters[i].annotations_off_))); in CreateAnnotationsDirectoryItem() 1249 uint32_t set_offset = annotation_set_ref_list->list_[i].annotations_off_; in GenerateParameterAnnotation()
|
/art/dexdump/ |
D | dexdump.cc | 607 pClassDef.annotations_off_, pClassDef.annotations_off_); in dumpClassDef()
|