Lines Matching refs:dwfl
61 mod = dwfl_addrmodule(ui->dwfl, ip); in __report_module()
74 mod = dwfl_report_elf(ui->dwfl, dso->short_name, filename, -1, in __report_module()
81 mod = dwfl_report_elf(ui->dwfl, dso->short_name, filename, -1, in __report_module()
92 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1; in __report_module()
135 static pid_t next_thread(Dwfl *dwfl, void *arg, void **thread_argp) in next_thread() argument
142 return dwfl_pid(dwfl); in next_thread()
170 static bool memory_read(Dwfl *dwfl __maybe_unused, Dwarf_Addr addr, Dwarf_Word *result, in memory_read()
272 ui->dwfl = dwfl_begin(&offline_callbacks); in unwind__get_entries()
273 if (!ui->dwfl) in unwind__get_entries()
284 err = !dwfl_attach_state(ui->dwfl, EM_NONE, thread__tid(thread), &callbacks, ui); in unwind__get_entries()
288 err = dwfl_getthread_frames(ui->dwfl, thread__tid(thread), frame_callback, ui); in unwind__get_entries()
309 dwfl_end(ui->dwfl); in unwind__get_entries()