Home
last modified time | relevance | path

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

/art/runtime/
Ddex_file.h202 uint32_t annotations_off_; // file offset to annotations_directory_item member
367 uint32_t annotations_off_; member
375 uint32_t annotations_off_; member
383 uint32_t annotations_off_; member
390 uint32_t annotations_off_; member
908 if (class_def.annotations_off_ == 0) { in GetAnnotationsDirectory()
911 return reinterpret_cast<const AnnotationsDirectoryItem*>(begin_ + class_def.annotations_off_); in GetAnnotationsDirectory()
957 uint32_t offset = anno_item.annotations_off_; in GetFieldAnnotationSetItem()
967 uint32_t offset = anno_item.annotations_off_; in GetMethodAnnotationSetItem()
977 uint32_t offset = anno_item->annotations_off_; in GetParameterAnnotationSetRefList()
[all …]
Ddex_file_verifier.cc2266 if (item->annotations_off_ != 0 && in CheckInterClassDefItem()
2267 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationsDirectoryItem)) { in CheckInterClassDefItem()
2387 if (item->annotations_off_ != 0) { in CheckInterClassDefItem()
2389 if (!IsAlignedParam(item->annotations_off_, 4)) { in CheckInterClassDefItem()
2393 const uint8_t* data = begin_ + item->annotations_off_; in CheckInterClassDefItem()
2505 if (item->annotations_off_ != 0 && in CheckInterAnnotationSetRefList()
2506 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationSetRefList()
2602 if (!CheckOffsetToTypeMap(field_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem()
2619 if (!CheckOffsetToTypeMap(method_item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) { in CheckInterAnnotationsDirectoryItem()
2636 if (!CheckOffsetToTypeMap(parameter_item->annotations_off_, in CheckInterAnnotationsDirectoryItem()
/art/dexlayout/
Ddex_ir.cc381 dex_file, disk_annotations_directory_item, disk_class_def.annotations_off_); in CreateClassDef()
496 uint32_t annotation_set_offset = fields[i].annotations_off_; in CreateAnnotationsDirectoryItem()
512 uint32_t annotation_set_offset = methods[i].annotations_off_; in CreateAnnotationsDirectoryItem()
529 GenerateParameterAnnotation(dex_file, method_id, list, parameters[i].annotations_off_))); in CreateAnnotationsDirectoryItem()
552 uint32_t set_offset = annotation_set_ref_list->list_[i].annotations_off_; in GenerateParameterAnnotation()
/art/dexdump/
Ddexdump.cc605 pClassDef.annotations_off_, pClassDef.annotations_off_); in dumpClassDef()