Lines Matching refs:header_

112       header_(reinterpret_cast<const Header*>(base)),  in DexFile()
113 string_ids_(reinterpret_cast<const StringId*>(base + header_->string_ids_off_)), in DexFile()
114 type_ids_(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)), in DexFile()
115 field_ids_(reinterpret_cast<const FieldId*>(base + header_->field_ids_off_)), in DexFile()
116 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)), in DexFile()
117 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)), in DexFile()
118 class_defs_(reinterpret_cast<const ClassDef*>(base + header_->class_defs_off_)), in DexFile()
156 << " " << header_->magic_[0] in CheckMagicAndVersion()
157 << " " << header_->magic_[1] in CheckMagicAndVersion()
158 << " " << header_->magic_[2] in CheckMagicAndVersion()
159 << " " << header_->magic_[3]; in CheckMagicAndVersion()
166 << " " << header_->magic_[4] in CheckMagicAndVersion()
167 << " " << header_->magic_[5] in CheckMagicAndVersion()
168 << " " << header_->magic_[6] in CheckMagicAndVersion()
169 << " " << header_->magic_[7]; in CheckMagicAndVersion()
177 const MapList* map_list = reinterpret_cast<const MapList*>(DataBegin() + header_->map_off_); in InitializeSectionsFromMapList()
178 if (header_->map_off_ == 0 || header_->map_off_ > DataSize()) { in InitializeSectionsFromMapList()
184 size_t map_limit = header_->map_off_ + count * sizeof(MapItem); in InitializeSectionsFromMapList()
185 if (header_->map_off_ >= map_limit || map_limit > DataSize()) { in InitializeSectionsFromMapList()