Lines Matching defs:nhdr
680 auto *nhdr = reinterpret_cast<const ElfW(Nhdr) *>(info->dlpi_addr +
684 if (nhdr->n_type == NT_GNU_BUILD_ID && nhdr->n_namesz == kGnuNamesz) {
685 if (off + sizeof(ElfW(Nhdr)) + nhdr->n_namesz + nhdr->n_descsz >
692 reinterpret_cast<const char *>(nhdr) + sizeof(*nhdr);
694 const char *value = reinterpret_cast<const char *>(nhdr) +
695 sizeof(*nhdr) + kGnuNamesz;
696 cur_module.setUuid(value, nhdr->n_descsz);
700 off += sizeof(*nhdr) + RoundUpTo(nhdr->n_namesz, 4) +
701 RoundUpTo(nhdr->n_descsz, 4);