• Home
  • Raw
  • Download

Lines Matching refs:header_

283   Sha1 GetSha1() const { return header_->signature_; }  in GetSha1()
286 DCHECK(header_ != nullptr) << GetLocation(); in GetHeader()
287 return *header_; in GetHeader()
302 return {Begin() - header_->HeaderOffset(), header_->ContainerSize()}; in GetDexContainerRange()
327 DCHECK(header_ != nullptr) << GetLocation(); in NumStringIds()
328 return header_->string_ids_size_; in NumStringIds()
339 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation(); in GetIndexForStringId()
364 DCHECK(header_ != nullptr) << GetLocation(); in NumTypeIds()
365 return header_->type_ids_size_; in NumTypeIds()
380 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation(); in GetIndexForTypeId()
399 DCHECK(header_ != nullptr) << GetLocation(); in NumFieldIds()
400 return header_->field_ids_size_; in NumFieldIds()
411 CHECK_LT(&field_id, field_ids_ + header_->field_ids_size_) << GetLocation(); in GetIndexForFieldId()
452 DCHECK(header_ != nullptr) << GetLocation(); in NumMethodIds()
453 return header_->method_ids_size_; in NumMethodIds()
464 CHECK_LT(&method_id, method_ids_ + header_->method_ids_size_) << GetLocation(); in GetIndexForMethodId()
513 DCHECK(header_ != nullptr) << GetLocation(); in NumClassDefs()
514 return header_->class_defs_size_; in NumClassDefs()
525 CHECK_LT(&class_def, class_defs_ + header_->class_defs_size_) << GetLocation(); in GetIndexForClassDef()
572 DCHECK(header_ != nullptr) << GetLocation(); in NumProtoIds()
573 return header_->proto_ids_size_; in NumProtoIds()
584 CHECK_LT(&proto_id, proto_ids_ + header_->proto_ids_size_) << GetLocation(); in GetIndexForProtoId()
815 size_t Size() const { return header_->file_size_; } in Size()
848 return reinterpret_cast<const dex::MapList*>(DataBegin() + header_->map_off_); in GetMapList()
972 const Header* const header_; variable