Home
last modified time | relevance | path

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

/external/elfutils/libdwfl/
Ddwfl_end.c57 if (dwfl->user_core != NULL) in dwfl_end()
59 free (dwfl->user_core->executable_for_core); in dwfl_end()
60 elf_end (dwfl->user_core->core); in dwfl_end()
61 if (dwfl->user_core->fd != -1) in dwfl_end()
62 close (dwfl->user_core->fd); in dwfl_end()
63 free (dwfl->user_core); in dwfl_end()
Dcore-file.c453 if (dwfl->user_core != NULL) in dwfl_core_file_report()
454 free (dwfl->user_core->executable_for_core); in dwfl_core_file_report()
457 if (dwfl->user_core != NULL) in dwfl_core_file_report()
458 dwfl->user_core->executable_for_core = NULL; in dwfl_core_file_report()
462 if (dwfl->user_core == NULL) in dwfl_core_file_report()
464 dwfl->user_core = calloc (1, sizeof (struct Dwfl_User_Core)); in dwfl_core_file_report()
465 if (dwfl->user_core == NULL) in dwfl_core_file_report()
470 dwfl->user_core->fd = -1; in dwfl_core_file_report()
472 dwfl->user_core->executable_for_core = strdup (executable); in dwfl_core_file_report()
473 if (dwfl->user_core->executable_for_core == NULL) in dwfl_core_file_report()
Dargp-std.c314 if (dwfl->user_core == NULL) in parse_opt()
316 dwfl->user_core = calloc (1, sizeof (struct Dwfl_User_Core)); in parse_opt()
317 if (dwfl->user_core == NULL) in parse_opt()
324 dwfl->user_core->core = core; in parse_opt()
325 dwfl->user_core->fd = fd; in parse_opt()
Ddwfl_build_id_find_elf.c149 && mod->dwfl->user_core != NULL in dwfl_build_id_find_elf()
150 && mod->dwfl->user_core->executable_for_core != NULL) in dwfl_build_id_find_elf()
156 const char *executable = mod->dwfl->user_core->executable_for_core; in dwfl_build_id_find_elf()
Dlink_map.c362 && dwfl->user_core != NULL in report_r_debug()
363 && dwfl->user_core->executable_for_core != NULL) in report_r_debug()
364 name = dwfl->user_core->executable_for_core; in report_r_debug()
802 && dwfl->user_core != NULL in dwfl_link_map_report()
803 && dwfl->user_core->executable_for_core != NULL) in dwfl_link_map_report()
811 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
DChangeLog383 (struct DWfl): Replace executable_for_core with user_core.
384 * argp-std.c (parse_opt): Store core and fd in Dwfl user_core.
386 executable_for_core in Dwfl user_core.
388 executable_for_core in Dwfl user_core.
389 * dwfl_end.c (dwfl_end): Release resources held in Dwfl user_core.
391 user_core.