Home | History | Annotate | Download | only in libdwfl

Lines Matching refs:nh

311     const GElf_Nhdr *nh = notes;
312 while ((const void *) nh < (const void *) notes + filesz)
314 const void *note_name = nh + 1;
315 const void *note_desc = note_name + NOTE_ALIGN (nh->n_namesz);
317 - note_desc) < nh->n_descsz))
320 if (nh->n_type == NT_GNU_BUILD_ID
321 && nh->n_descsz > 0
322 && nh->n_namesz == sizeof "GNU"
326 build_id_len = nh->n_descsz;
327 build_id = malloc (nh->n_descsz);
333 nh = note_desc + NOTE_ALIGN (nh->n_descsz);