Home
last modified time | relevance | path

Searched refs:note_data (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/gdb/gdb/
Dfbsd-proc.c125 char *note_data = NULL; in fbsd_make_corefile_notes() local
134 note_data = elfcore_write_prstatus (obfd, note_data, note_size, in fbsd_make_corefile_notes()
139 note_data = elfcore_write_prfpreg (obfd, note_data, note_size, in fbsd_make_corefile_notes()
143 note_data = elfcore_write_thrmisc (obfd, note_data, note_size, in fbsd_make_corefile_notes()
154 note_data = elfcore_write_prpsinfo (obfd, note_data, note_size, in fbsd_make_corefile_notes()
158 make_cleanup (xfree, note_data); in fbsd_make_corefile_notes()
159 return note_data; in fbsd_make_corefile_notes()
Dgcore.c48 void *note_data = NULL; in gcore_command() local
80 note_data = target_make_corefile_notes (obfd, &note_size); in gcore_command()
83 if (note_data != NULL && note_size != 0) in gcore_command()
102 if (note_data != NULL && note_size != 0) in gcore_command()
104 if (!bfd_set_section_contents (obfd, note_sec, note_data, 0, note_size)) in gcore_command()
Dprocfs.c5823 char *note_data, int *note_size) in procfs_do_thread_registers() argument
5833 note_data = (char *) elfcore_write_lwpstatus (obfd, in procfs_do_thread_registers()
5834 note_data, in procfs_do_thread_registers()
5840 note_data = (char *) elfcore_write_prstatus (obfd, in procfs_do_thread_registers()
5841 note_data, in procfs_do_thread_registers()
5848 note_data = (char *) elfcore_write_prfpreg (obfd, in procfs_do_thread_registers()
5849 note_data, in procfs_do_thread_registers()
5853 return note_data; in procfs_do_thread_registers()
5858 char *note_data; member
5871 args->note_data = procfs_do_thread_registers (args->obfd, inferior_ptid, in procfs_corefile_thread_callback()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
DProcessElfCore.cpp522 DataExtractor note_data(segment, note_start, note_size); in parseSegment() local
524 result.push_back({note, note_data}); in parseSegment()