Lines Matching defs:sections
199 possible target sections we care about. */
284 struct dwfl_relocation *sections = mod->reloc_info;
286 if (idx >= sections->count)
290 *shndxp = elf_ndxscn (sections->refs[idx].scn);
292 return sections->refs[idx].name;
336 struct dwfl_relocation *sections = mod->reloc_info;
338 /* The sections are sorted by address, so we can use binary search. */
339 size_t l = 0, u = sections->count;
343 if (*addr < sections->refs[idx].start)
345 else if (*addr > sections->refs[idx].end)
352 if (*addr == sections->refs[idx].end
353 && idx + 1 < sections->count
354 && *addr == sections->refs[idx + 1].start)
357 *addr -= sections->refs[idx].start;