HomeSort by relevance Sort by last modified time
    Searched defs:nhdr (Results 1 - 10 of 10) sorted by null

  /external/elfutils/0.153/libdwfl/
dwfl_module_build_id.c 82 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,
core-file.c 456 GElf_Nhdr nhdr; local
459 while ((pos = gelf_getnote (notes, pos, &nhdr,
461 if (nhdr.n_type == NT_AUXV
462 && nhdr.n_namesz == sizeof "CORE"
466 auxv_size = nhdr.n_descsz;
linux-kernel-modules.c 522 GElf_Nhdr nhdr; member in union:__anon25019
536 GElf_Nhdr *nhdr = (void *) p; local
537 p += sizeof *nhdr;
539 p += (nhdr->n_namesz + 3) & -4U;
541 p += (nhdr->n_descsz + 3) & -4U;
544 && nhdr->n_type == NT_GNU_BUILD_ID
545 && nhdr->n_namesz == sizeof "GNU"
559 nhdr->n_descsz, vaddr);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-minimal.c 35 } *nhdr; local
43 nhdr = ptr;
45 nhdr->n_namesz = bswap_32(nhdr->n_namesz);
46 nhdr->n_descsz = bswap_32(nhdr->n_descsz);
47 nhdr->n_type = bswap_32(nhdr->n_type);
50 namesz = NOTE_ALIGN(nhdr->n_namesz);
51 descsz = NOTE_ALIGN(nhdr->n_descsz)
    [all...]
symbol-elf.c 370 GElf_Nhdr *nhdr = ptr; local
371 size_t namesz = NOTE_ALIGN(nhdr->n_namesz),
372 descsz = NOTE_ALIGN(nhdr->n_descsz);
375 ptr += sizeof(*nhdr);
378 if (nhdr->n_type == NT_GNU_BUILD_ID &&
379 nhdr->n_namesz == sizeof("GNU")) {
435 GElf_Nhdr nhdr; local
438 if (read(fd, &nhdr, sizeof(nhdr)) != sizeof(nhdr))
    [all...]
  /external/libnl/lib/route/
neigh.c 502 struct ndmsg nhdr = { local
510 nhdr.ndm_family = nl_addr_get_family(tmpl->n_dst);
513 nhdr.ndm_state = tmpl->n_state;
519 if (nlmsg_append(msg, &nhdr, sizeof(nhdr), NLMSG_ALIGNTO) < 0)
  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 801 struct eap_hdr *nhdr; local
808 nhdr = wpabuf_put(nmsg, sizeof(*nhdr));
810 nhdr->code = req->code;
811 nhdr->identifier = req->identifier;
812 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_peap.c 1030 struct eap_hdr *nhdr; local
1040 nhdr = wpabuf_put(nbuf, sizeof(*nhdr));
1041 nhdr->code = resp->code;
1042 nhdr->identifier = resp->identifier;
1043 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
  /external/elfutils/0.153/src/
elflint.c 3933 GElf_Nhdr nhdr; local
    [all...]
readelf.c 8151 GElf_Nhdr nhdr; local
    [all...]

Completed in 468 milliseconds