Lines Matching refs:dwfl
30 #include ELFUTILS_HEADER(dwfl)
49 report_pid (Dwfl *dwfl, pid_t pid) in report_pid() argument
51 int result = dwfl_linux_proc_report (dwfl, pid); in report_pid()
57 if (dwfl_report_end (dwfl, NULL, NULL) != 0) in report_pid()
60 result = dwfl_linux_proc_attach (dwfl, pid, true); in report_pid()
78 Dwfl *dwfl = dwfl_begin (&proc_callbacks); in pid_to_dwfl() local
79 if (dwfl == NULL) in pid_to_dwfl()
81 report_pid (dwfl, pid); in pid_to_dwfl()
82 return dwfl; in pid_to_dwfl()
99 Dwfl *dwfl = dwfl_thread_dwfl (thread); in frame_callback() local
100 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted); in frame_callback()
110 kill (dwfl_pid (dwfl), SIGKILL); in frame_callback()
162 Dwfl *dwfl = pid_to_dwfl (pid); in main() local
163 dwfl_getthreads (dwfl, thread_callback, NULL); in main()