Searched defs:nhdr (Results 1 - 12 of 12) sorted by relevance

/external/elfutils/libdwfl/
H A Ddwfl_module_build_id.c82 GElf_Nhdr nhdr; local
85 while ((pos = gelf_getnote (data, pos, &nhdr, &name_pos, &desc_pos)) > 0)
86 if (nhdr.n_type == NT_GNU_BUILD_ID
87 && nhdr.n_namesz == sizeof "GNU" && !memcmp (data->d_buf + name_pos,
90 data->d_buf + desc_pos, nhdr.n_descsz,
H A Dcore-file.c434 GElf_Nhdr nhdr; local
437 while ((pos = gelf_getnote (notes, pos, &nhdr,
439 if (nhdr.n_type == NT_AUXV
440 && nhdr.n_namesz == sizeof "CORE"
444 auxv_size = nhdr.n_descsz;
H A Dlinux-kernel-modules.c443 GElf_Nhdr nhdr; member in union:__anon18440
457 GElf_Nhdr *nhdr = (void *) p; local
458 p += sizeof *nhdr;
460 p += (nhdr->n_namesz + 3) & -4U;
462 p += (nhdr->n_descsz + 3) & -4U;
465 && nhdr->n_type == NT_GNU_BUILD_ID
466 && nhdr->n_namesz == sizeof "GNU"
480 nhdr->n_descsz, vaddr);
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_peap.c822 struct eap_hdr *nhdr; local
829 nhdr = wpabuf_put(nmsg, sizeof(*nhdr));
831 nhdr->code = req->code;
832 nhdr->identifier = req->identifier;
833 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_peap.c822 struct eap_hdr *nhdr; local
829 nhdr = wpabuf_put(nmsg, sizeof(*nhdr));
831 nhdr->code = req->code;
832 nhdr->identifier = req->identifier;
833 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_peap.c822 struct eap_hdr *nhdr; local
829 nhdr = wpabuf_put(nmsg, sizeof(*nhdr));
831 nhdr->code = req->code;
832 nhdr->identifier = req->identifier;
833 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_peap.c1063 struct eap_hdr *nhdr; local
1073 nhdr = wpabuf_put(nbuf, sizeof(*nhdr));
1074 nhdr->code = resp->code;
1075 nhdr->identifier = resp->identifier;
1076 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_peap.c1063 struct eap_hdr *nhdr; local
1073 nhdr = wpabuf_put(nbuf, sizeof(*nhdr));
1074 nhdr->code = resp->code;
1075 nhdr->identifier = resp->identifier;
1076 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_peap.c1063 struct eap_hdr *nhdr; local
1073 nhdr = wpabuf_put(nbuf, sizeof(*nhdr));
1074 nhdr->code = resp->code;
1075 nhdr->identifier = resp->identifier;
1076 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
/external/elfutils/src/
H A Delflint.c3891 GElf_Nhdr nhdr; local
3896 &nhdr, &name_offset, &desc_offset)) > 0)
3902 switch (nhdr.n_type)
3926 phndx, (uint32_t) nhdr.n_type, start + offset);
3932 (uint32_t) nhdr.n_type, offset);
3935 switch (nhdr.n_type)
3944 if (nhdr.n_namesz == sizeof "Linux"
3952 phndx, (uint32_t) nhdr.n_type, offset);
3958 (uint32_t) nhdr.n_type, offset);
H A Dreadelf.c6063 handle_core_note (Ebl *ebl, const GElf_Nhdr *nhdr, const void *desc) argument
6071 if (! ebl_core_note (ebl, nhdr->n_type, nhdr->n_descsz,
6080 nregloc == 0 ? nhdr->n_descsz : 0,
6101 GElf_Nhdr nhdr; local
6106 &nhdr, &name_offset, &desc_offset)) > 0)
6114 (int) nhdr.n_namesz, name, nhdr.n_descsz,
6116 ? ebl_core_note_type_name (ebl, nhdr.n_type,
6118 : ebl_object_note_type_name (ebl, nhdr
[all...]
/external/linux-tools-perf/util/
H A Dsymbol.c1372 GElf_Nhdr *nhdr = ptr; local
1373 int namesz = NOTE_ALIGN(nhdr->n_namesz),
1374 descsz = NOTE_ALIGN(nhdr->n_descsz);
1377 ptr += sizeof(*nhdr);
1380 if (nhdr->n_type == NT_GNU_BUILD_ID &&
1381 nhdr->n_namesz == sizeof("GNU")) {
1435 GElf_Nhdr nhdr; local
1438 if (read(fd, &nhdr, sizeof(nhdr)) != sizeof(nhdr))
[all...]

Completed in 348 milliseconds