Searched refs:string_section (Results 1 – 1 of 1) sorted by relevance
912 Elf_Shdr* string_section = GetSectionHeader(symbol_section->sh_link); in FindSymbolByName() local913 if (string_section == nullptr) { in FindSymbolByName()927 const char* name = GetString(*string_section, symbol->st_name); in FindSymbolByName()958 Elf_Shdr* string_section = GetSectionHeader(symbol_section->sh_link); in FindSymbolByName() local959 if (string_section == nullptr) { in FindSymbolByName()967 const char* name = GetString(*string_section, symbol->st_name); in FindSymbolByName()989 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Shdr& string_section, in GetString() argument993 if (static_cast<Elf_Word>(SHT_STRTAB) != string_section.sh_type) { in GetString()996 if (i >= string_section.sh_size) { in GetString()1002 uint8_t* strings = Begin() + string_section.sh_offset; in GetString()[all …]