Lines Matching refs:sh_name
350 const char *name = GetSectionName(section_headers_[k].sh_name); in ElfReaderImpl()
707 return GetSectionName(section_headers_[shndx].sh_name); in GetSectionNameByIndex()
731 const char *name = GetSectionName(section_headers_[shndx].sh_name); in GetSectionContentsByName()
754 const char *name = GetSectionName(section_headers_[shndx].sh_name); in GetSectionInfoByName()
800 const char *name = GetSectionName(section_headers_[k].sh_name); in HasDebugSections()
857 const char *GetSectionName(typename ElfArch::Word sh_name) { in GetSectionName() argument
861 return shstrtab->GetOffset(sh_name); in GetSectionName()
1204 bool ElfReader::SectionNamesMatch(const string &name, const string &sh_name) { in SectionNamesMatch() argument
1205 if ((name.find(".debug_", 0) == 0) && (sh_name.find(".zdebug_", 0) == 0)) { in SectionNamesMatch()
1207 const string sh_name_suffix(sh_name, strlen(".zdebug_")); in SectionNamesMatch()
1210 return name == sh_name; in SectionNamesMatch()