Home | History | Annotate | Download | only in m_coredump

Lines Matching defs:note

52 typedef struct __attribute__ ((__packed__)) note {
53 struct note *next;
782 /*=== Note utility functions ===*/
810 static UInt note_size(const note_t *note)
812 return sizeof(note_t) - sizeof(note_t *) + note->nhdr.n_descsz;
818 const note_t *note;
820 for (note = list; note != NULL; note = note->next)
821 size += note_size(note);
842 const note_t *note;
844 for (note = list; note != NULL; note = note->next)
845 write_part(fd, filename, CONST_CAST(void *, &note->nhdr),
846 note_size(note), "notes");
921 UInt num_phdrs = 2; /* two CORE note sections */
953 /* Add detail about the faulting thread as the first note.
954 This is how gdb determines which thread faulted. Note that
1020 /* Add detail about the faulting thread as the first note.
1021 This is how gdb determines which thread faulted. Note that