Searched defs:GetHeader (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Delf_file.cc209 program_headers_start_ = Begin() + GetHeader().e_phoff;
211 if (!CheckAndSet(GetHeader().e_phoff, "program headers", &program_headers_start_, error_msg)) {
216 if (!CheckAndSet(GetHeader().e_shoff, "section headers", &section_headers_start_, error_msg)) {
440 int64_t offset = static_cast<int64_t>(GetHeader().e_shoff +
441 (GetHeader().e_shstrndx * GetHeader().e_shentsize));
586 Elf32_Ehdr& ElfFile::GetHeader() const { function in class:art::ElfFile
699 return GetHeader().e_phnum;
704 byte* program_header = GetProgramHeadersStart() + (i * GetHeader().e_phentsize);
722 return GetHeader()
[all...]
H A Ddex_file.h437 const Header& GetHeader() const { function in class:art::DexFile
/art/compiler/optimizing/
H A Dnodes.h197 HBasicBlock* GetHeader() const { function in class:art::HLoopInformation
284 DCHECK_EQ(loop_information_->GetHeader(), this);
359 return (loop_information_ != nullptr) && (loop_information_->GetHeader() == this);
373 } else if (loop_information_->Contains(*info->GetHeader())) {
380 // Note that we cannot do the check `info->Contains(loop_information_)->GetHeader()`

Completed in 67 milliseconds