Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/gdb/gdb/
H A 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()
H A 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()
H A Dprocfs.c5834 note_data, in procfs_do_thread_registers()
5841 note_data, 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
5919 note_data = elfcore_write_pstatus (obfd, note_data, note_size, in procfs_make_note_section()
5925 thread_args.note_data = note_data; in procfs_make_note_section()
5929 if (thread_args.note_data == note_data) in procfs_make_note_section()
5938 note_data = thread_args.note_data; in procfs_make_note_section()
5944 note_data = elfcore_write_note (obfd, note_data, note_size, in procfs_make_note_section()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp486 DataExtractor note_data(segment, note_start, note_size); in parseSegment() local
488 result.push_back({note, note_data}); in parseSegment()