Lines Matching refs:dwfl
39 #include ELFUTILS_HEADER(dwfl)
53 Dwfl *dwfl = dwfl_begin (&proc_callbacks); in elfutils_open() local
54 if (dwfl == NULL) in elfutils_open()
57 int result = dwfl_linux_proc_report (dwfl, pid); in elfutils_open()
63 if (dwfl_report_end (dwfl, NULL, NULL) != 0) in elfutils_open()
67 Dwarf *dbg = dwfl_addrdwarf (dwfl, address, &bias); in elfutils_open()
76 Elf *elf = dwfl_module_getelf (dwfl_addrmodule (dwfl, address), &bias); in elfutils_open()
81 return dwfl; in elfutils_open()
85 elfutils_close (Dwfl *dwfl) in elfutils_close() argument
87 dwfl_end (dwfl); in elfutils_close()
105 Dwfl *dwfl = elfutils_open (getpid (), (Dwarf_Addr) (uintptr_t) &main); in main() local
106 elfutils_close (dwfl); in main()