Lines Matching refs:dwfl
25 #include ELFUTILS_HEADER(dwfl)
48 report_pid (Dwfl *dwfl, pid_t pid) in report_pid() argument
50 int result = dwfl_linux_proc_report (dwfl, pid); in report_pid()
56 if (dwfl_report_end (dwfl, NULL, NULL) != 0) in report_pid()
59 result = dwfl_linux_proc_attach (dwfl, pid, true); in report_pid()
77 Dwfl *dwfl = dwfl_begin (&proc_callbacks); in pid_to_dwfl() local
78 if (dwfl == NULL) in pid_to_dwfl()
80 report_pid (dwfl, pid); in pid_to_dwfl()
81 return dwfl; in pid_to_dwfl()
98 Dwfl *dwfl = dwfl_thread_dwfl (thread); in frame_callback() local
99 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted); in frame_callback()
109 kill (dwfl_pid (dwfl), SIGKILL); in frame_callback()
171 Dwfl *dwfl = pid_to_dwfl (pid); in main() local
172 if (dwfl_getthreads (dwfl, thread_callback, NULL) == -1) in main()