Searched refs:annotations_off_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Ddex_file.h218 uint32_t annotations_off_; // file offset to annotations_directory_item member in struct:art::DexFile::ClassDef
348 uint32_t annotations_off_; member in struct:art::DexFile::FieldAnnotationsItem
356 uint32_t annotations_off_; member in struct:art::DexFile::MethodAnnotationsItem
364 uint32_t annotations_off_; member in struct:art::DexFile::ParameterAnnotationsItem
371 uint32_t annotations_off_; member in struct:art::DexFile::AnnotationSetRefItem
880 if (class_def.annotations_off_ == 0) {
883 return reinterpret_cast<const AnnotationsDirectoryItem*>(begin_ + class_def.annotations_off_);
929 uint32_t offset = anno_item.annotations_off_;
939 uint32_t offset = anno_item.annotations_off_;
949 uint32_t offset = anno_item->annotations_off_;
[all...]
H A Ddex_file_verifier.cc1945 if (item->annotations_off_ != 0 &&
1946 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationsDirectoryItem)) {
2064 if (item->annotations_off_ != 0) {
2065 // annotations_off_ is supposed to be aligned by 4.
2066 if (!IsAlignedParam(item->annotations_off_, 4)) {
2067 ErrorStringPrintf("Invalid annotations_off_, not aligned by 4");
2070 const uint8_t* data = begin_ + item->annotations_off_;
2094 if (item->annotations_off_ != 0 &&
2095 !CheckOffsetToTypeMap(item->annotations_off_, DexFile::kDexTypeAnnotationSetItem)) {
2191 if (!CheckOffsetToTypeMap(field_item->annotations_off_, DexFil
[all...]
/art/dexdump/
H A Ddexdump.cc408 pClassDef.annotations_off_, pClassDef.annotations_off_);

Completed in 424 milliseconds