Home
last modified time | relevance | path

Searched refs:reloc_info (Results 1 – 4 of 4) sorted by relevance

/external/elfutils/libdwfl/
Dderelocate.c82 if (likely (mod->reloc_info != NULL)) in cache_sections()
83 return mod->reloc_info->count; in cache_sections()
168 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs])); in cache_sections()
169 if (unlikely (mod->reloc_info == NULL)) in cache_sections()
182 mod->reloc_info->count = nrefs; in cache_sections()
185 mod->reloc_info->refs[i].name = sortrefs[i]->name; in cache_sections()
186 mod->reloc_info->refs[i].scn = sortrefs[i]->scn; in cache_sections()
187 mod->reloc_info->refs[i].relocs = sortrefs[i]->relocs; in cache_sections()
188 mod->reloc_info->refs[i].start = sortrefs[i]->start; in cache_sections()
189 mod->reloc_info->refs[i].end = sortrefs[i]->end; in cache_sections()
[all …]
Ddwfl_module.c118 if (mod->reloc_info != NULL) in __libdwfl_module_free()
119 free (mod->reloc_info); in __libdwfl_module_free()
DlibdwflP.h179 struct dwfl_relocation *reloc_info; /* Relocatable sections. */ member
DChangeLog1676 * dwfl_module.c (__libdwfl_module_free): Free mod->reloc_info if
2179 * derelocate.c (cache_sections): Intern mod->reloc_info check.
2180 (dwfl_module_relocations): Don't check mod->reloc_info.