Lines Matching refs:mod
228 print_dwarf_function (Dwfl_Module *mod, Dwarf_Addr addr)
231 Dwarf_Die *cudie = dwfl_module_addrdie (mod, addr, &bias);
297 print_addrsym (Dwfl_Module *mod, GElf_Addr addr)
301 const char *name = dwfl_module_addrsym (mod, addr, &s, &shndx);
305 int i = dwfl_module_relocate_address (mod, &addr);
307 name = dwfl_module_relocation_info (mod, i, NULL);
320 see_one_module (Dwfl_Module *mod,
329 *result = mod;
334 find_symbol (Dwfl_Module *mod,
343 int n = dwfl_module_getsymtab (mod);
346 const char *symbol_name = dwfl_module_getsym (mod, i, symbol, NULL);
382 Dwfl_Module *mod = NULL;
383 if (dwfl_getmodules (dwfl, &see_one_module, &mod, 0) != 0
384 || mod == NULL)
388 int nscn = dwfl_module_relocations (mod);
392 const char *scn = dwfl_module_relocation_info (mod, i, &shndx);
401 (elf_getscn (dwfl_module_getelf (mod, &shdr_bias), shndx),
444 Dwfl_Module *mod = dwfl_addrmodule (dwfl, addr);
450 if (! print_dwarf_function (mod, addr) && !show_symbols)
451 puts (dwfl_module_addrname (mod, addr) ?: "??");
455 print_addrsym (mod, addr);
457 Dwfl_Line *line = dwfl_module_getsrc (mod, addr);