Lines Matching refs:dwfl
74 mod = dwfl_addrmodule(ui->dwfl, ip); in __report_module()
89 mod = dwfl_report_elf(ui->dwfl, dso__short_name(dso), filename, -1, in __report_module()
97 mod = dwfl_report_elf(ui->dwfl, dso__short_name(dso), filename, -1, in __report_module()
108 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1; in __report_module()
151 static pid_t next_thread(Dwfl *dwfl, void *arg, void **thread_argp) in next_thread() argument
158 return dwfl_pid(dwfl); in next_thread()
186 static bool memory_read(Dwfl *dwfl __maybe_unused, Dwarf_Addr addr, Dwarf_Word *result, in memory_read()
291 ui->dwfl = dwfl_begin(&offline_callbacks); in unwind__get_entries()
292 if (!ui->dwfl) in unwind__get_entries()
303 err = !dwfl_attach_state(ui->dwfl, EM_NONE, thread__tid(thread), &callbacks, ui); in unwind__get_entries()
307 err = dwfl_getthread_frames(ui->dwfl, thread__tid(thread), frame_callback, ui); in unwind__get_entries()
328 dwfl_end(ui->dwfl); in unwind__get_entries()