Lines Matching refs:header_
405 header_(reinterpret_cast<const Header*>(base)), in DexFile()
406 string_ids_(reinterpret_cast<const StringId*>(base + header_->string_ids_off_)), in DexFile()
407 type_ids_(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)), in DexFile()
408 field_ids_(reinterpret_cast<const FieldId*>(base + header_->field_ids_off_)), in DexFile()
409 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)), in DexFile()
410 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)), in DexFile()
411 class_defs_(reinterpret_cast<const ClassDef*>(base + header_->class_defs_off_)), in DexFile()
436 if (!IsMagicValid(header_->magic_)) { in CheckMagicAndVersion()
439 << " " << header_->magic_[0] in CheckMagicAndVersion()
440 << " " << header_->magic_[1] in CheckMagicAndVersion()
441 << " " << header_->magic_[2] in CheckMagicAndVersion()
442 << " " << header_->magic_[3]; in CheckMagicAndVersion()
446 if (!IsVersionValid(header_->magic_)) { in CheckMagicAndVersion()
449 << " " << header_->magic_[4] in CheckMagicAndVersion()
450 << " " << header_->magic_[5] in CheckMagicAndVersion()
451 << " " << header_->magic_[6] in CheckMagicAndVersion()
452 << " " << header_->magic_[7]; in CheckMagicAndVersion()
1107 header_.static_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataHeader()
1108 header_.instance_fields_size_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataHeader()
1109 header_.direct_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataHeader()
1110 header_.virtual_methods_size_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataHeader()