Lines Matching full:string_section
912 Elf_Shdr* string_section = GetSectionHeader(symbol_section->sh_link);
913 if (string_section == nullptr) {
927 const char* name = GetString(*string_section, symbol->st_name);
958 Elf_Shdr* string_section = GetSectionHeader(symbol_section->sh_link);
959 if (string_section == nullptr) {
967 const char* name = GetString(*string_section, symbol->st_name);
989 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Shdr& string_section,
993 if (static_cast<Elf_Word>(SHT_STRTAB) != string_section.sh_type) {
996 if (i >= string_section.sh_size) {
1002 uint8_t* strings = Begin() + string_section.sh_offset;
1536 Elf_Shdr* string_section = GetSectionNameStringSection();
1537 CHECK(string_section != nullptr);
1541 const char* name = GetString(*string_section, sh->sh_name);