Lines Matching refs:nameoff
64 uint32_t nameoff; /* offset in strings itself */ member
224 …info(const struct kmod_elf *elf, uint16_t idx, uint64_t *offset, uint64_t *size, uint32_t *nameoff) in elf_get_section_info() argument
233 *nameoff = 0; in elf_get_section_info()
244 *nameoff = READV(sh_name); in elf_get_section_info()
249 *nameoff = READV(sh_name); in elf_get_section_info()
261 idx, *offset, *size, *nameoff); in elf_get_section_info()
342 &elf->header.strings.nameoff) < 0) { in kmod_elf_new()
381 uint32_t nameoff; in elf_find_section() local
383 int err = elf_get_section_info(elf, i, &off, &size, &nameoff); in elf_find_section()
386 if (nameoff >= nameslen) in elf_find_section()
388 n = names + nameoff; in elf_find_section()
409 uint32_t nameoff; in kmod_elf_get_section() local
411 int err = elf_get_section_info(elf, i, &off, &size, &nameoff); in kmod_elf_get_section()
414 if (nameoff >= nameslen) in kmod_elf_get_section()
416 n = names + nameoff; in kmod_elf_get_section()