Home
last modified time | relevance | path

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

/NextBSD/contrib/gdb/gdb/
HDfbsd-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()
HDgcore.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()
HDprocfs.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 …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
HDProcessElfCore.cpp505 DataExtractor note_data (segment_data, note_start, note_size); in ParseThreadContextsFromNoteSegment() local
513 ParseFreeBSDPrStatus(*thread_data, note_data, arch); in ParseThreadContextsFromNoteSegment()
516 thread_data->fpregset = note_data; in ParseThreadContextsFromNoteSegment()
522 ParseFreeBSDThrMisc(*thread_data, note_data); in ParseThreadContextsFromNoteSegment()
529 thread_data->vregset = note_data; in ParseThreadContextsFromNoteSegment()
541 prstatus.Parse(note_data, arch); in ParseThreadContextsFromNoteSegment()
544 len = note_data.GetByteSize() - header_size; in ParseThreadContextsFromNoteSegment()
545 thread_data->gpregset = DataExtractor(note_data, header_size, len); in ParseThreadContextsFromNoteSegment()
548 thread_data->fpregset = note_data; in ParseThreadContextsFromNoteSegment()
552 prpsinfo.Parse(note_data, arch); in ParseThreadContextsFromNoteSegment()
[all …]