Home
last modified time | relevance | path

Searched refs:shdr_table_ (Results 1 – 1 of 1) sorted by relevance

/frameworks/libs/binary_translation/tools/nogrod/
Delf_reader.cc182 const typename ElfT::Shdr* shdr_table_; member in nogrod::__anona7aeaf9f0111::ElfFileImpl
190 : path_(path), fd_(fd), header_(nullptr), shdr_table_(nullptr), shdr_num_(0) {} in ElfFileImpl()
201 const typename ElfT::Shdr* shdr = shdr_table_ + i; in ValidateShdrTable()
302 shdr_table_ = OffsetToAddr<const typename ElfT::Shdr>(shdr_offset); in Init()
325 const typename ElfT::Shdr* strtab_shdr = &shdr_table_[header_->e_shstrndx]; in Init()
347 if (shdr_table_[i].sh_type == sh_type) { in FindSectionHeaderByType()
348 return shdr_table_ + i; in FindSectionHeaderByType()
358 if (strcmp(name, strtab_.GetString(shdr_table_[i].sh_name)) == 0) { in FindSectionHeaderByName()
359 return shdr_table_ + i; in FindSectionHeaderByName()
392 const typename ElfT::Shdr* strtab_shdr = shdr_table_ + dynsym_shdr->sh_link; in ReadExportedSymbols()