Lines Matching refs:dwfl
39 mod = dwfl_addrmodule(ui->dwfl, ip); in __report_module()
41 mod = dwfl_report_elf(ui->dwfl, dso->short_name, in __report_module()
45 return mod && dwfl_addrmodule(ui->dwfl, ip) == mod ? 0 : -1; in __report_module()
76 static pid_t next_thread(Dwfl *dwfl, void *arg, void **thread_argp) in next_thread() argument
83 return dwfl_pid(dwfl); in next_thread()
108 static bool memory_read(Dwfl *dwfl __maybe_unused, Dwarf_Addr addr, Dwarf_Word *result, in memory_read()
185 ui.dwfl = dwfl_begin(&offline_callbacks); in unwind__get_entries()
186 if (!ui.dwfl) in unwind__get_entries()
197 if (!dwfl_attach_state(ui.dwfl, EM_NONE, thread->tid, &callbacks, &ui)) in unwind__get_entries()
200 err = dwfl_getthread_frames(ui.dwfl, thread->tid, frame_callback, &ui); in unwind__get_entries()
209 dwfl_end(ui.dwfl); in unwind__get_entries()