Home
last modified time | relevance | path

Searched refs:user_core (Results 1 – 7 of 7) sorted by relevance

/third_party/elfutils/libdwfl/
Ddwfl_end.c60 if (dwfl->user_core != NULL) in dwfl_end()
62 free (dwfl->user_core->executable_for_core); in dwfl_end()
63 elf_end (dwfl->user_core->core); in dwfl_end()
64 if (dwfl->user_core->fd != -1) in dwfl_end()
65 close (dwfl->user_core->fd); in dwfl_end()
66 free (dwfl->user_core); in dwfl_end()
Dcore-file.c459 if (dwfl->user_core != NULL) in dwfl_core_file_report()
460 free (dwfl->user_core->executable_for_core); in dwfl_core_file_report()
463 if (dwfl->user_core != NULL) in dwfl_core_file_report()
464 dwfl->user_core->executable_for_core = NULL; in dwfl_core_file_report()
468 if (dwfl->user_core == NULL) in dwfl_core_file_report()
471 dwfl->user_core = calloc (1, sizeof (struct Dwfl_User_Core)); in dwfl_core_file_report()
472 if (dwfl->user_core == NULL) in dwfl_core_file_report()
477 dwfl->user_core->fd = -1; in dwfl_core_file_report()
479 dwfl->user_core->executable_for_core = strdup (executable); in dwfl_core_file_report()
480 if (dwfl->user_core->executable_for_core == NULL) in dwfl_core_file_report()
[all …]
Dargp-std.c309 if (dwfl->user_core == NULL) in parse_opt()
311 dwfl->user_core = calloc (1, sizeof (struct Dwfl_User_Core)); in parse_opt()
312 if (dwfl->user_core == NULL) in parse_opt()
319 dwfl->user_core->core = core; in parse_opt()
320 dwfl->user_core->fd = fd; in parse_opt()
Ddwfl_build_id_find_elf.c151 && mod->dwfl->user_core != NULL in dwfl_build_id_find_elf()
152 && mod->dwfl->user_core->executable_for_core != NULL) in dwfl_build_id_find_elf()
158 const char *executable = mod->dwfl->user_core->executable_for_core; in dwfl_build_id_find_elf()
Dlink_map.c383 && dwfl->user_core != NULL in report_r_debug()
384 && dwfl->user_core->executable_for_core != NULL) in report_r_debug()
385 name = dwfl->user_core->executable_for_core; in report_r_debug()
804 && dwfl->user_core != NULL in dwfl_link_map_report()
805 && dwfl->user_core->executable_for_core != NULL) in dwfl_link_map_report()
813 int fd = open (dwfl->user_core->executable_for_core, O_RDONLY); in dwfl_link_map_report()
DlibdwflP.h140 struct Dwfl_User_Core *user_core; member
DChangeLog469 new bool cleanup_user_core and cleanup dwfl->user_core in error
931 (struct DWfl): Replace executable_for_core with user_core.
932 * argp-std.c (parse_opt): Store core and fd in Dwfl user_core.
934 executable_for_core in Dwfl user_core.
936 executable_for_core in Dwfl user_core.
937 * dwfl_end.c (dwfl_end): Release resources held in Dwfl user_core.
939 user_core.