Lines Matching refs:mod
23 static int __find_debuginfo(Dwfl_Module *mod __maybe_unused, void **userdata, in __find_debuginfo()
46 Dwfl_Module *mod; in __report_module() local
60 mod = dwfl_addrmodule(ui->dwfl, ip); in __report_module()
61 if (mod) { in __report_module()
64 dwfl_module_info(mod, NULL, &s, NULL, NULL, NULL, NULL, NULL); in __report_module()
66 mod = 0; in __report_module()
69 if (!mod) in __report_module()
70 mod = dwfl_report_elf(ui->dwfl, dso->short_name, dso->long_name, -1, in __report_module()
72 if (!mod) { in __report_module()
76 mod = dwfl_report_elf(ui->dwfl, dso->short_name, filename, -1, in __report_module()
80 if (mod) { in __report_module()
83 dwfl_module_info(mod, &userdatap, NULL, NULL, NULL, NULL, NULL, NULL); in __report_module()
87 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1; in __report_module()