Home
last modified time | relevance | path

Searched refs:note_size (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dfbsd-nat.c133 fbsd_make_corefile_notes (bfd *obfd, int *note_size) in fbsd_make_corefile_notes() argument
155 note_data = elfcore_write_prstatus (obfd, note_data, note_size, in fbsd_make_corefile_notes()
164 note_data = elfcore_write_prfpreg (obfd, note_data, note_size, in fbsd_make_corefile_notes()
175 note_data = elfcore_write_prpsinfo (obfd, note_data, note_size, in fbsd_make_corefile_notes()
H A Dgcore.c49 int note_size = 0; 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()
94 bfd_set_section_size (obfd, note_sec, note_size); 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 Dfbsd-nat.h41 extern char *fbsd_make_corefile_notes (bfd *obfd, int *note_size);
H A Dlinux-nat.c2474 char *note_data, int *note_size) in linux_nat_do_thread_registers() argument
2486 note_size, in linux_nat_do_thread_registers()
2493 note_size, in linux_nat_do_thread_registers()
2499 note_size, in linux_nat_do_thread_registers()
2509 int *note_size; member
2529 args->note_size); in linux_nat_corefile_thread_callback()
2542 char *note_data, int *note_size) in linux_nat_do_registers() argument
2551 note_data, note_size); in linux_nat_do_registers()
2559 linux_nat_make_corefile_notes (bfd *obfd, int *note_size) in linux_nat_make_corefile_notes() argument
2582 note_size, fname, psargs); in linux_nat_make_corefile_notes()
[all …]
H A Dprocfs.c6031 char *note_data, int *note_size) in procfs_do_thread_registers() argument
6043 note_size, in procfs_do_thread_registers()
6050 note_size, in procfs_do_thread_registers()
6058 note_size, in procfs_do_thread_registers()
6067 int *note_size; member
6081 args->note_size); in procfs_corefile_thread_callback()
6088 procfs_make_note_section (bfd *obfd, int *note_size) in procfs_make_note_section() argument
6121 note_size, in procfs_make_note_section()
6127 note_data = elfcore_write_pstatus (obfd, note_data, note_size, in procfs_make_note_section()
6134 thread_args.note_size = note_size; in procfs_make_note_section()
[all …]
H A Dsol-thread.c1519 sol_make_note_section (bfd *obfd, int *note_size) in sol_make_note_section() argument
1521 return procfs_ops.to_make_corefile_notes (obfd, note_size); in sol_make_note_section()
H A Dexec.c756 exec_make_note_section (bfd *obfd, int *note_size) in exec_make_note_section() argument
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp584 size_t note_size = llvm::alignTo(note.n_descsz, 4); in parseSegment() local
586 result.push_back({note, DataExtractor(segment, note_start, note_size)}); in parseSegment()
587 offset += note_size; in parseSegment()