Lines Matching refs:elf64_
1692 ElfFile::ElfFile(ElfFileImpl32* elf32) : elf32_(elf32), elf64_(nullptr) { in ElfFile()
1695 ElfFile::ElfFile(ElfFileImpl64* elf64) : elf32_(nullptr), elf64_(elf64) { in ElfFile()
1700 CHECK_NE(elf32_.get() == nullptr, elf64_.get() == nullptr); in ~ElfFile()
1804 if (elf64_.get() != nullptr) { \
1805 return elf64_->func(__VA_ARGS__); \
1842 CHECK(elf64_.get() != nullptr); in GetSectionOffsetAndSize()
1844 Elf64_Shdr *shdr = elf64_->FindSectionByName(section_name); in GetSectionOffsetAndSize()
1871 if (elf64_.get() != nullptr) { in HasSection()
1872 return elf64_->FindSectionByName(name) != nullptr; in HasSection()
1894 if (elf_file->elf64_.get() != nullptr) { in Strip()
1895 return elf_file->elf64_->Strip(file, error_msg); in Strip()
1902 if (elf64_.get() != nullptr) { in Fixup()
1903 return elf64_->Fixup(static_cast<Elf64_Addr>(base_address)); in Fixup()