Lines Matching defs:note
52 struct build_id_note *note;
78 struct build_id_note *note = (void *)(info->dlpi_addr +
83 if (note->nhdr.n_type == NT_GNU_BUILD_ID &&
84 note->nhdr.n_descsz != 0 &&
85 note->nhdr.n_namesz == 4 &&
86 memcmp(note->name, "GNU", 4) == 0) {
87 data->note = note;
92 ALIGN_POT(note->nhdr.n_namesz, 4) +
93 ALIGN_POT(note->nhdr.n_descsz, 4);
94 note = (struct build_id_note *)((char *)note + offset);
115 .note = NULL,
121 return data.note;
125 build_id_length(const struct build_id_note *note)
127 return note->nhdr.n_descsz;
131 build_id_data(const struct build_id_note *note)
133 return note->build_id;