Searched refs:header_ (Results 1 - 8 of 8) sorted by relevance

/art/runtime/
H A Ddex_file_verifier.cc245 uint32_t expected_size = header_->file_size_;
253 const uint32_t non_sum = sizeof(header_->magic_) + sizeof(header_->checksum_);
254 const byte* non_sum_ptr = reinterpret_cast<const byte*>(header_) + non_sum;
256 if (adler_checksum != header_->checksum_) {
257 ErrorStringPrintf("Bad checksum (%08x, expected %08x)", adler_checksum, header_->checksum_);
262 if (header_->endian_tag_ != DexFile::kDexEndianConstant) {
263 ErrorStringPrintf("Unexpected endian_tag: %x", header_->endian_tag_);
267 if (header_->header_size_ != sizeof(DexFile::Header)) {
268 ErrorStringPrintf("Bad header size: %ud", header_
[all...]
H A Ddex_file.h435 DCHECK(header_ != NULL) << GetLocation();
436 return *header_;
450 DCHECK(header_ != NULL) << GetLocation();
451 return header_->string_ids_size_;
462 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation();
501 DCHECK(header_ != NULL) << GetLocation();
502 return header_->type_ids_size_;
513 CHECK_LT(&type_id, type_ids_ + header_->type_ids_size_) << GetLocation();
540 DCHECK(header_ != NULL) << GetLocation();
541 return header_
965 const Header* const header_; member in class:art::DexFile
1191 } header_; member in class:art::ClassDataItemIterator
[all...]
H A Delf_file.cc113 header_(nullptr),
182 size_t program_header_size = header_->e_phoff + (header_->e_phentsize * header_->e_phnum);
445 header_ = reinterpret_cast<Elf32_Ehdr*>(map_->Begin());
446 if ((ELFMAG0 != header_->e_ident[EI_MAG0])
447 || (ELFMAG1 != header_->e_ident[EI_MAG1])
448 || (ELFMAG2 != header_->e_ident[EI_MAG2])
449 || (ELFMAG3 != header_->e_ident[EI_MAG3])) {
453 header_
[all...]
H A Ddex_file.cc348 header_(reinterpret_cast<const Header*>(base)),
349 string_ids_(reinterpret_cast<const StringId*>(base + header_->string_ids_off_)),
350 type_ids_(reinterpret_cast<const TypeId*>(base + header_->type_ids_off_)),
351 field_ids_(reinterpret_cast<const FieldId*>(base + header_->field_ids_off_)),
352 method_ids_(reinterpret_cast<const MethodId*>(base + header_->method_ids_off_)),
353 proto_ids_(reinterpret_cast<const ProtoId*>(base + header_->proto_ids_off_)),
354 class_defs_(reinterpret_cast<const ClassDef*>(base + header_->class_defs_off_)),
379 if (!IsMagicValid(header_->magic_)) {
382 << " " << header_->magic_[0]
383 << " " << header_
[all...]
H A Ddex_file_verifier.h39 header_(&dex_file->GetHeader()), ptr_(NULL), previous_item_(NULL) {
118 const DexFile::Header* const header_; member in class:art::DexFileVerifier::DexFile
H A Delf_file.h175 Elf32_Ehdr* header_; member in class:art::ElfFile
/art/compiler/optimizing/
H A Dnodes.cc250 if (!header_->Dominates(back_edge)) {
260 blocks_.SetBit(header_->GetBlockId());
266 DCHECK_EQ(header_->GetPredecessors().Size(), 2u);
267 return header_->GetDominator();
275 return other.blocks_.IsBitSet(header_->GetBlockId());
H A Dnodes.h193 : header_(header),
198 return header_;
248 HBasicBlock* header_; member in class:art::HLoopInformation

Completed in 80 milliseconds