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

  /system/core/debuggerd/libdebuggerd/
elf_utils.cpp 58 NhdrType nhdr; local
59 if (memory->Read(addr, reinterpret_cast<uint8_t*>(&nhdr), sizeof(nhdr)) != sizeof(nhdr)) {
62 addr += sizeof(nhdr);
63 if (nhdr.n_type == NT_GNU_BUILD_ID) {
65 addr += NOTE_ALIGN(nhdr.n_namesz);
67 if (nhdr.n_descsz > sizeof(build_id_data)) {
69 nhdr.n_descsz);
72 if (memory->Read(addr, build_id_data, nhdr.n_descsz) != nhdr.n_descsz)
    [all...]
  /external/tcpdump/
print-ppi.c 63 struct pcap_pkthdr nhdr; local
94 nhdr = *h;
95 nhdr.caplen = caplen;
96 nhdr.len = length;
97 hdrlen = printer(ndo, &nhdr, p);
print-pktap.c 107 struct pcap_pkthdr nhdr; local
148 nhdr = *h;
149 nhdr.caplen = caplen;
150 nhdr.len = length;
151 hdrlen += printer(ndo, &nhdr, p);
  /external/elfutils/libdwelf/
dwelf_elf_gnu_build_id.c 44 GElf_Nhdr nhdr; local
47 while ((pos = gelf_getnote (data, pos, &nhdr, &name_pos, &desc_pos)) > 0)
48 if (nhdr.n_type == NT_GNU_BUILD_ID
49 && nhdr.n_namesz == sizeof "GNU"
55 *build_id_len = nhdr.n_descsz;
  /external/elfutils/libdwfl/
core-file.c 504 GElf_Nhdr nhdr; local
507 while ((pos = gelf_getnote (notes, pos, &nhdr,
509 if (nhdr.n_namesz == sizeof "CORE"
512 if (nhdr.n_type == NT_AUXV)
515 auxv_size = nhdr.n_descsz;
517 if (nhdr.n_type == NT_FILE)
520 note_file_size = nhdr.n_descsz;
linux-core-attach.c 104 GElf_Nhdr nhdr; local
128 &nhdr, &name_offset,
139 if (! ebl_core_note (core_arg->ebl, &nhdr, name,
145 if (nhdr.n_type != NT_PRSTATUS)
173 GElf_Nhdr nhdr; local
180 size_t getnote_err = gelf_getnote (note_data, offset, &nhdr, &name_offset,
192 int core_note_err = ebl_core_note (core_arg->ebl, &nhdr, name, &regs_offset,
196 assert (nhdr.n_type == NT_PRSTATUS);
366 GElf_Nhdr nhdr; local
371 &nhdr, &name_offset, &desc_offset)) > 0
    [all...]
linux-kernel-modules.c 525 GElf_Nhdr nhdr; member in union:__anon20122
539 GElf_Nhdr *nhdr = (void *) p; local
540 p += sizeof *nhdr;
542 p += (nhdr->n_namesz + 3) & -4U;
544 p += (nhdr->n_descsz + 3) & -4U;
547 && nhdr->n_type == NT_GNU_BUILD_ID
548 && nhdr->n_namesz == sizeof "GNU"
562 nhdr->n_descsz, vaddr);
  /external/libnl/lib/route/
neigh.c 567 struct ndmsg nhdr = { local
575 nhdr.ndm_family = nl_addr_get_family(tmpl->n_dst);
578 nhdr.ndm_family = AF_BRIDGE;
581 nhdr.ndm_flags = tmpl->n_flags;
584 nhdr.ndm_state = tmpl->n_state;
590 if (nlmsg_append(msg, &nhdr, sizeof(nhdr), NLMSG_ALIGNTO) < 0)
  /external/wpa_supplicant_8/src/eap_peer/
eap_peap.c 806 struct eap_hdr *nhdr; local
813 nhdr = wpabuf_put(nmsg, sizeof(*nhdr));
815 nhdr->code = req->code;
816 nhdr->identifier = req->identifier;
817 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_peap.c 1090 struct eap_hdr *nhdr; local
1100 nhdr = wpabuf_put(nbuf, sizeof(*nhdr));
1101 nhdr->code = resp->code;
1102 nhdr->identifier = resp->identifier;
1103 nhdr->length = host_to_be16(sizeof(struct eap_hdr) +
    [all...]
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 65 #define Nhdr ElfW(Nhdr)
756 Nhdr nhdr; local
757 memset(&nhdr, 0, sizeof(nhdr));
758 nhdr.n_namesz = 5;
759 nhdr.n_descsz = sizeof(struct prstatus);
760 nhdr.n_type = NT_PRSTATUS;
761 if (!writea(1, &nhdr, sizeof(nhdr)) |
1169 Nhdr nhdr; local
    [all...]
  /external/elfutils/src/
elflint.c 4251 GElf_Nhdr nhdr; local
    [all...]
readelf.c 9343 GElf_Nhdr nhdr; local
    [all...]

Completed in 513 milliseconds