Lines Matching refs:nh
479 const GElf_Nhdr *nh = notes; in dwfl_segment_report_module() local
480 while ((const void *) nh < (const void *) notes + filesz) in dwfl_segment_report_module()
482 const void *note_name = nh + 1; in dwfl_segment_report_module()
483 const void *note_desc = note_name + NOTE_ALIGN (nh->n_namesz); in dwfl_segment_report_module()
485 - note_desc) < nh->n_descsz)) in dwfl_segment_report_module()
488 if (nh->n_type == NT_GNU_BUILD_ID in dwfl_segment_report_module()
489 && nh->n_descsz > 0 in dwfl_segment_report_module()
490 && nh->n_namesz == sizeof "GNU" in dwfl_segment_report_module()
494 build_id_len = nh->n_descsz; in dwfl_segment_report_module()
495 build_id = malloc (nh->n_descsz); in dwfl_segment_report_module()
501 nh = note_desc + NOTE_ALIGN (nh->n_descsz); in dwfl_segment_report_module()