Lines Matching refs:mod
24 static int __find_debuginfo(Dwfl_Module *mod __maybe_unused, void **userdata, in __find_debuginfo()
47 Dwfl_Module *mod; in __report_module() local
74 mod = dwfl_addrmodule(ui->dwfl, ip); in __report_module()
75 if (mod) { in __report_module()
78 dwfl_module_info(mod, NULL, &s, NULL, NULL, NULL, NULL, NULL); in __report_module()
80 mod = NULL; in __report_module()
83 if (!mod) { in __report_module()
89 mod = dwfl_report_elf(ui->dwfl, dso__short_name(dso), filename, -1, in __report_module()
93 if (!mod) { in __report_module()
97 mod = dwfl_report_elf(ui->dwfl, dso__short_name(dso), filename, -1, in __report_module()
101 if (mod) { in __report_module()
104 dwfl_module_info(mod, &userdatap, NULL, NULL, NULL, NULL, NULL, NULL); in __report_module()
108 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1; in __report_module()