Home | History | Annotate | Download | only in util

Lines Matching full:secstrs

822 					const Elf_Data *secstrs)
824 return secstrs->d_buf + shdr->sh_name;
828 const Elf_Data *secstrs)
830 return strstr(elf_sec__name(shdr, secstrs), "text") != NULL;
834 const Elf_Data *secstrs)
836 return strstr(elf_sec__name(shdr, secstrs), "data") != NULL;
1034 static bool elf_sec__is_a(GElf_Shdr *shdr, Elf_Data *secstrs,
1039 return elf_sec__is_text(shdr, secstrs);
1041 return elf_sec__is_data(shdr, secstrs);
1073 Elf_Data *symstrs, *secstrs;
1141 secstrs = elf_getdata(sec_strndx, NULL);
1142 if (secstrs == NULL)
1193 if (is_label && !elf_sec__is_a(&shdr, secstrs, map->type))
1196 section_name = elf_sec__name(&shdr, secstrs);