Lines Matching refs:dwfl
40 #include ELFUTILS_HEADER(dwfl)
54 Dwfl *dwfl = dwfl_begin (&proc_callbacks); in elfutils_open() local
55 if (dwfl == NULL) in elfutils_open()
58 int result = dwfl_linux_proc_report (dwfl, pid); in elfutils_open()
64 if (dwfl_report_end (dwfl, NULL, NULL) != 0) in elfutils_open()
68 Dwarf *dbg = dwfl_addrdwarf (dwfl, address, &bias); in elfutils_open()
77 Dwfl_Module *module = dwfl_addrmodule (dwfl, address); in elfutils_open()
86 return dwfl; in elfutils_open()
90 elfutils_close (Dwfl *dwfl) in elfutils_close() argument
92 dwfl_end (dwfl); in elfutils_close()
110 Dwfl *dwfl = elfutils_open (getpid (), (Dwarf_Addr) (uintptr_t) &main); in main() local
111 elfutils_close (dwfl); in main()