Searched refs:secstrs (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/arch/arm/kernel/ |
D | module.c | 327 const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; in find_mod_section() local 330 if (strcmp(name, secstrs + s->sh_name) == 0) in find_mod_section() 344 const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; in module_finalize() local 352 const char *secname = secstrs + s->sh_name; in module_finalize()
|
/Linux-v4.19/tools/perf/util/ |
D | symbol-elf.c | 129 const Elf_Data *secstrs) in elf_sec__name() argument 131 return secstrs->d_buf + shdr->sh_name; in elf_sec__name() 135 const Elf_Data *secstrs) in elf_sec__is_text() argument 137 return strstr(elf_sec__name(shdr, secstrs), "text") != NULL; in elf_sec__is_text() 141 const Elf_Data *secstrs) in elf_sec__is_data() argument 143 return strstr(elf_sec__name(shdr, secstrs), "data") != NULL; in elf_sec__is_data() 146 static bool elf_sec__filter(GElf_Shdr *shdr, Elf_Data *secstrs) in elf_sec__filter() argument 148 return elf_sec__is_text(shdr, secstrs) || in elf_sec__filter() 149 elf_sec__is_data(shdr, secstrs); in elf_sec__filter() 911 Elf_Data *symstrs, *secstrs; in dso__load_sym() local [all …]
|
/Linux-v4.19/arch/arm64/kernel/ |
D | module.c | 448 const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; in module_finalize() local 451 if (strcmp(".altinstructions", secstrs + s->sh_name) == 0) in module_finalize() 455 !strcmp(".text.ftrace_trampoline", secstrs + s->sh_name)) in module_finalize()
|