Lines Matching refs:string_section
854 Elf_Shdr* string_section = GetSectionHeader(symbol_section->sh_link); in FindSymbolByName() local
855 if (string_section == nullptr) { in FindSymbolByName()
869 const char* name = GetString(*string_section, symbol->st_name); in FindSymbolByName()
900 Elf_Shdr* string_section = GetSectionHeader(symbol_section->sh_link); in FindSymbolByName() local
901 if (string_section == nullptr) { in FindSymbolByName()
909 const char* name = GetString(*string_section, symbol->st_name); in FindSymbolByName()
931 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Shdr& string_section, in GetString() argument
935 if (static_cast<Elf_Word>(SHT_STRTAB) != string_section.sh_type) { in GetString()
938 if (i >= string_section.sh_size) { in GetString()
944 uint8_t* strings = Begin() + string_section.sh_offset; in GetString()
1468 Elf_Shdr* string_section = GetSectionNameStringSection(); in Strip() local
1469 CHECK(string_section != nullptr); in Strip()
1473 const char* name = GetString(*string_section, sh->sh_name); in Strip()