Searched refs:shstrndx (Results 1 – 10 of 10) sorted by relevance
/linux-6.3-rc2/scripts/ |
A D | sorttable.h | 285 unsigned int shstrndx; in do_sort() local 297 shstrndx = r2(&ehdr->e_shstrndx); in do_sort() 298 if (shstrndx == SHN_XINDEX) in do_sort() 299 shstrndx = r(&shdr[0].sh_link); in do_sort() 300 secstrings = (const char *)ehdr + _r(&shdr[shstrndx].sh_offset); in do_sort()
|
/linux-6.3-rc2/drivers/remoteproc/ |
A D | remoteproc_elf_helpers.h | 102 u16 shstrndx = elf_hdr_get_e_shstrndx(class, ehdr); local 107 shdr = ehdr + elf_size_of_hdr(class) + shstrndx * elf_size_of_shdr(class);
|
A D | remoteproc_elf_loader.c | 260 u16 shstrndx = elf_hdr_get_e_shstrndx(class, ehdr); local 266 name_table_shdr = shdr + (shstrndx * elf_shdr_get_size);
|
A D | pru_rproc.c | 870 u16 shstrndx = ehdr->e_shstrndx; in pru_rproc_find_interrupt_map() local 876 name_table_shdr = shdr + shstrndx; in pru_rproc_find_interrupt_map()
|
/linux-6.3-rc2/arch/x86/tools/ |
A D | relocs.c | 16 static unsigned int shstrndx; variable 257 sec_strtab = secs[shstrndx].strtab; in sec_name() 400 shstrndx = ehdr.e_shstrndx; in read_ehdr() 416 if (shnum == SHN_UNDEF || shstrndx == SHN_XINDEX) { in read_ehdr() 428 if (shstrndx == SHN_XINDEX) in read_ehdr() 429 shstrndx = elf_word_to_cpu(shdr.sh_link); in read_ehdr() 432 if (shstrndx >= shnum) in read_ehdr()
|
/linux-6.3-rc2/tools/lib/bpf/ |
A D | usdt.c | 354 size_t shstrndx; in find_elf_sec_by_name() local 356 if (elf_getshdrstrndx(elf, &shstrndx)) in find_elf_sec_by_name() 360 if (!elf_rawdata(elf_getscn(elf, shstrndx), NULL)) in find_elf_sec_by_name() 369 name = elf_strptr(elf, shstrndx, shdr->sh_name); in find_elf_sec_by_name()
|
A D | btf.c | 931 size_t shstrndx; in btf_parse_elf() local 957 if (elf_getshdrstrndx(elf, &shstrndx)) { in btf_parse_elf() 963 if (!elf_rawdata(elf_getscn(elf, shstrndx), NULL)) { in btf_parse_elf() 978 name = elf_strptr(elf, shstrndx, sh.sh_name); in btf_parse_elf()
|
A D | libbpf.c | 598 size_t shstrndx; /* section index for section name strings */ member 1330 if (elf_getshdrstrndx(elf, &obj->efile.shstrndx)) { in bpf_object__elf_init() 1338 if (!elf_rawdata(elf_getscn(elf, obj->efile.shstrndx), NULL)) { in bpf_object__elf_init() 3159 name = elf_strptr(obj->efile.elf, obj->efile.shstrndx, off); in elf_sec_str()
|
/linux-6.3-rc2/tools/objtool/ |
A D | elf.c | 270 size_t shstrndx, sections_nr; in read_sections() local 278 if (elf_getshdrstrndx(elf->elf, &shstrndx)) { in read_sections() 311 sec->name = elf_strptr(elf->elf, shstrndx, sec->sh.sh_name); in read_sections()
|
/linux-6.3-rc2/tools/perf/util/ |
A D | symbol-elf.c | 2767 size_t shstrndx, next; in construct_sdt_notes_list() local 2776 if (elf_getshdrstrndx(elf, &shstrndx) != 0) { in construct_sdt_notes_list()
|
Completed in 48 milliseconds