Lines Matching defs:dwfl
28 #include ELFUTILS_HEADER(dwfl)
70 static Dwfl *dwfl = NULL;
379 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted);
436 Dwfl_Module *mod = dwfl_addrmodule (dwfl, pc_adjusted);
577 dwfl = dwfl_begin (&proc_callbacks);
578 if (dwfl == NULL)
581 int err = dwfl_linux_proc_report (dwfl, pid);
592 dwfl = dwfl_begin (&core_callbacks);
593 if (dwfl == NULL)
595 if (dwfl_core_file_report (dwfl, core, exec) < 0)
599 if (dwfl_report_end (dwfl, NULL, NULL) != 0)
604 int err = dwfl_linux_proc_attach (dwfl, pid, false);
615 if (dwfl_core_file_attach (dwfl, core) < 0)
620 if (dwfl_pid (dwfl) < 0)
699 printf ("PID %lld - %s module memory map\n", (long long) dwfl_pid (dwfl),
701 if (dwfl_getmodules (dwfl, module_callback, NULL, 0) != 0)
717 switch (dwfl_getthread_frames (dwfl, pid, frame_callback, &frames))
732 printf ("PID %lld - %s\n", (long long) dwfl_pid (dwfl),
734 switch (dwfl_getthreads (dwfl, thread_callback, &frames))
747 dwfl_end (dwfl);