Lines Matching full:header_
435 header_(reinterpret_cast<const Header*>(base)),
436 string_ids_(reinterpret_cast<const StringId*>(base + header_->string_ids_off_)),
437 type_ids_(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)),
438 field_ids_(reinterpret_cast<const FieldId*>(base + header_->field_ids_off_)),
439 header_->method_ids_off_)),
440 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
441 class_defs_(reinterpret_cast<const ClassDef*>(base + header_->class_defs_off_)),
472 if (!IsMagicValid(header_->magic_)) {
475 << " " << header_->magic_[0]
476 << " " << header_->magic_[1]
477 << " " << header_->magic_[2]
478 << " " << header_->magic_[3];
482 if (!IsVersionValid(header_->magic_)) {
485 << " " << header_->magic_[4]
486 << " " << header_->magic_[5]
487 << " " << header_->magic_[6]
488 << " " << header_->magic_[7];
2313 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
2314 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_);
2315 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);
2316 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_);