Home | History | Annotate | Download | only in libdwfl

Lines Matching defs:nh

316     const GElf_Nhdr *nh = notes;
317 while ((const void *) nh < (const void *) notes + filesz)
319 const void *note_name = nh + 1;
320 const void *note_desc = note_name + NOTE_ALIGN (nh->n_namesz);
322 - note_desc) < nh->n_descsz))
325 if (nh->n_type == NT_GNU_BUILD_ID
326 && nh->n_descsz > 0
327 && nh->n_namesz == sizeof "GNU"
331 build_id_len = nh->n_descsz;
332 build_id = malloc (nh->n_descsz);
338 nh = note_desc + NOTE_ALIGN (nh->n_descsz);