HomeSort by relevance Sort by last modified time
    Searched refs:ehdr (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/elfutils/0.153/libebl/
ebl_check_special_symbol.c 59 ebl_check_special_symbol (ebl, ehdr, sym, name, destshdr)
61 GElf_Ehdr *ehdr;
69 return ebl->check_special_symbol (ebl->elf, ehdr, sym, name, destshdr);
eblbsspltp.c 59 ebl_bss_plt_p (ebl, ehdr)
61 GElf_Ehdr *ehdr;
63 return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
  /external/elfutils/0.153/libelf/
elf_getident.c 80 || (offsetof (struct Elf, state.elf32.ehdr)
81 == offsetof (struct Elf, state.elf64.ehdr))
82 ? elf->state.elf32.ehdr->e_ident
83 : elf->state.elf64.ehdr->e_ident);
gelf_update_ehdr.c 79 Elf32_Ehdr *ehdr = elf->state.elf32.ehdr; local
81 if (ehdr == NULL)
99 memcpy (ehdr->e_ident, src->e_ident, EI_NIDENT);
101 ehdr->name = src->name
118 Elf64_Ehdr *ehdr = elf->state.elf64.ehdr; local
120 if (ehdr == NULL)
127 memcpy (ehdr, src, sizeof (Elf64_Ehdr));
elf_getshdrstrndx.c 86 assert (offsetof (struct Elf, state.elf.ehdr)
87 == offsetof (struct Elf, state.elf32.ehdr));
88 assert (sizeof (elf->state.elf.ehdr)
89 == sizeof (elf->state.elf32.ehdr));
90 assert (offsetof (struct Elf, state.elf.ehdr)
91 == offsetof (struct Elf, state.elf64.ehdr));
92 assert (sizeof (elf->state.elf.ehdr)
93 == sizeof (elf->state.elf64.ehdr));
95 if (unlikely (elf->state.elf.ehdr == NULL))
105 ? elf->state.elf32.ehdr->e_shstrnd
    [all...]
elf32_updatenull.c 72 ELFW(default_ehdr,LIBELFBITS) (Elf *elf, ElfW2(LIBELFBITS,Ehdr) *ehdr,
76 if (memcmp (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG) != 0)
78 memcpy (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG);
83 update_if_changed (ehdr->e_ident[EI_CLASS], ELFW(ELFCLASS,LIBELFBITS),
87 if (unlikely (ehdr->e_ident[EI_DATA] == ELFDATANONE))
89 ehdr->e_ident[EI_DATA] =
93 else if (unlikely (ehdr->e_ident[EI_DATA] >= ELFDATANUM))
100 && ehdr->e_ident[EI_DATA] != ELFDATA2LSB)
102 && ehdr->e_ident[EI_DATA] != ELFDATA2MSB))
    [all...]
gelf_getehdr.c 79 /* The following is an optimization: the ehdr element is at the same
81 if (offsetof (struct Elf, state.elf32.ehdr)
82 != offsetof (struct Elf, state.elf64.ehdr))
85 if (unlikely (elf->state.elf64.ehdr == NULL))
90 Elf32_Ehdr *ehdr = elf->state.elf32.ehdr; local
93 memcpy (dest->e_ident, ehdr->e_ident, EI_NIDENT);
95 dest->name = ehdr->name
113 result = memcpy (dest, elf->state.elf64.ehdr, sizeof (*dest));
elf32_newehdr.c 65 ElfW2(LIBELFBITS,Ehdr) *
69 ElfW2(LIBELFBITS,Ehdr) *result;
92 if (elf->state.ELFW(elf,LIBELFBITS).ehdr == NULL)
95 elf->state.ELFW(elf,LIBELFBITS).ehdr =
99 memset (elf->state.ELFW(elf,LIBELFBITS).ehdr, '\0',
100 sizeof (ElfW2(LIBELFBITS,Ehdr)));
106 result = elf->state.ELFW(elf,LIBELFBITS).ehdr;
elf_newdata.c 77 || (offsetof (struct Elf, state.elf32.ehdr)
78 == offsetof (struct Elf, state.elf64.ehdr))
79 ? scn->elf->state.elf32.ehdr == NULL
80 : scn->elf->state.elf64.ehdr == NULL)
  /external/tcpdump/
print-ipfc.c 84 struct ether_header ehdr; local
94 extract_ipfc_addrs(ipfcp, (char *)ESRC(&ehdr), (char *)EDST(&ehdr));
97 ipfc_hdr_print(ipfcp, length, ESRC(&ehdr), EDST(&ehdr));
105 if (llc_print(p, length, caplen, ESRC(&ehdr), EDST(&ehdr),
113 ESRC(&ehdr), EDST(&ehdr));
print-token.c 106 struct ether_header ehdr; local
120 extract_token_addrs(trp, (char*)ESRC(&ehdr), (char*)EDST(&ehdr));
125 *ESRC(&ehdr) &= 0x7f;
128 token_hdr_print(trp, length, ESRC(&ehdr), EDST(&ehdr));
156 token_hdr_print(trp, length, ESRC(&ehdr), EDST(&ehdr));
167 if (llc_print(p, length, caplen, ESRC(&ehdr), EDST(&ehdr),
    [all...]
  /external/qemu/include/hw/
elf_ops.h 1 static void glue(bswap_ehdr, SZ)(struct elfhdr *ehdr)
3 bswap16s(&ehdr->e_type); /* Object file type */
4 bswap16s(&ehdr->e_machine); /* Architecture */
5 bswap32s(&ehdr->e_version); /* Object file version */
6 bswapSZs(&ehdr->e_entry); /* Entry point virtual address */
7 bswapSZs(&ehdr->e_phoff); /* Program header table file offset */
8 bswapSZs(&ehdr->e_shoff); /* Section header table file offset */
9 bswap32s(&ehdr->e_flags); /* Processor-specific flags */
10 bswap16s(&ehdr->e_ehsize); /* ELF header size in bytes */
11 bswap16s(&ehdr->e_phentsize); /* Program header table entry size *
184 struct elfhdr ehdr; local
    [all...]
  /external/valgrind/main/coregrind/
launcher-linux.c 180 const Elf32_Ehdr *ehdr = (Elf32_Ehdr *)header; local
183 if (ehdr->e_machine == EM_386 &&
184 (ehdr->e_ident[EI_OSABI] == ELFOSABI_SYSV ||
185 ehdr->e_ident[EI_OSABI] == ELFOSABI_LINUX)) {
189 if (ehdr->e_machine == EM_ARM &&
190 (ehdr->e_ident[EI_OSABI] == ELFOSABI_SYSV ||
191 ehdr->e_ident[EI_OSABI] == ELFOSABI_LINUX)) {
195 if (ehdr->e_machine == EM_MIPS &&
196 (ehdr->e_ident[EI_OSABI] == ELFOSABI_SYSV ||
197 ehdr->e_ident[EI_OSABI] == ELFOSABI_LINUX))
216 const Elf64_Ehdr *ehdr = (Elf64_Ehdr *)header; local
    [all...]
  /external/elfutils/0.153/libdwfl/
elf-from-memory.c 117 } ehdr; local
127 .d_buf = &ehdr,
128 .d_size = sizeof ehdr,
147 phoff = ehdr.e32.e_phoff;
148 phnum = ehdr.e32.e_phnum;
149 phentsize = ehdr.e32.e_phentsize;
152 shdrs_end = ehdr.e32.e_shoff + ehdr.e32.e_shnum * ehdr.e32.e_shentsize;
159 phoff = ehdr.e64.e_phoff
    [all...]
  /external/libunwind/src/ia64/
Gfind_unwind_table.c 39 Elf64_Ehdr *ehdr = edi->ei.image; local
64 soff = ehdr->e_shoff;
65 str_soff = soff + (ehdr->e_shstrndx * ehdr->e_shentsize);
67 if (soff + ehdr->e_shnum * ehdr->e_shentsize > edi->ei.size)
70 soff + ehdr->e_shnum * ehdr->e_shentsize,
78 for (i = 0; i < ehdr->e_shnum; ++i)
86 shdr = (Elf64_Shdr *) (((char *) shdr) + ehdr->e_shentsize)
100 Elf64_Ehdr *ehdr; local
    [all...]
  /bionic/libc/bionic/
dl_iterate_phdr_static.cpp 39 ElfW(Ehdr)* ehdr = reinterpret_cast<ElfW(Ehdr)*>(&__executable_start);
41 if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG) != 0) {
53 exe_info.dlpi_phdr = reinterpret_cast<ElfW(Phdr)*>(reinterpret_cast<uintptr_t>(ehdr) + ehdr->e_phoff);
54 exe_info.dlpi_phnum = ehdr->e_phnum;
64 ElfW(Ehdr)* ehdr_vdso = reinterpret_cast<ElfW(Ehdr)*>(getauxval(AT_SYSINFO_EHDR));
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-minimal.c 108 Elf32_Ehdr ehdr; local
111 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1)
115 ehdr.e_phoff = bswap_32(ehdr.e_phoff);
116 ehdr.e_phentsize = bswap_16(ehdr.e_phentsize);
117 ehdr.e_phnum = bswap_16(ehdr.e_phnum);
120 buf_size = ehdr.e_phentsize * ehdr.e_phnum
157 Elf64_Ehdr ehdr; local
    [all...]
  /external/chromium_org/components/nacl/loader/nonsfi/
elf_loader.cc 47 NaClErrorCode ValidateElfHeader(const ElfW(Ehdr)& ehdr) {
48 if (std::memcmp(ehdr.e_ident, ELFMAG, SELFMAG)) {
54 if (ehdr.e_ident[EI_CLASS] != ELFCLASS32) {
59 if (ehdr.e_ident[EI_CLASS] != ELFCLASS64) {
67 if (ehdr.e_type != ET_DYN) {
72 if (ehdr.e_machine != NACL_ELF_E_MACHINE) {
74 << base::HexEncode(&ehdr.e_machine, sizeof(ehdr.e_machine));
78 if (ehdr.e_version != EV_CURRENT)
248 ElfW(Ehdr) ehdr; member in struct:nacl::nonsfi::ElfImage::Data
    [all...]
  /external/libunwind/src/
elfxx.c 39 Elf_W (Ehdr) *ehdr = ei->image;
42 soff = ehdr->e_shoff;
43 if (soff + ehdr->e_shnum * ehdr->e_shentsize > ei->size)
46 (unsigned long) (soff + ehdr->e_shnum * ehdr->e_shentsize),
57 Elf_W (Ehdr) *ehdr = ei->image;
62 soff = ehdr->e_shoff
    [all...]
  /external/ltrace/sysdeps/linux-gnu/m68k/
plt.c 29 * ((lte->ehdr.e_flags & EF_CPU32) ? 24 : 20);
  /external/elfutils/0.153/backends/
ppc_symbol.c 81 find_dyn_got (Elf *elf, GElf_Ehdr *ehdr, GElf_Addr *addr)
83 for (int i = 0; i < ehdr->e_phnum; ++i)
117 ppc_check_special_symbol (Elf *elf, GElf_Ehdr *ehdr, const GElf_Sym *sym,
127 if (find_dyn_got (elf, ehdr, &gotaddr))
134 const char *sname = elf_strptr (elf, ehdr->e_shstrndx, destshdr->sh_name);
154 ppc_bss_plt_p (Elf *elf, GElf_Ehdr *ehdr)
157 return ! find_dyn_got (elf, ehdr, &addr);
  /external/elfutils/0.153/libasm/
asm_begin.c 69 GElf_Ehdr *ehdr; local
89 ehdr = gelf_getehdr (result->out.elf, &ehdr_mem);
91 assert (ehdr != NULL);
94 ehdr->e_type = ET_REL;
96 ehdr->e_version = EV_CURRENT;
99 ehdr->e_machine = ebl_get_elfmachine (ebl);
100 ehdr->e_ident[EI_CLASS] = class;
101 ehdr->e_ident[EI_DATA] = ebl_get_elfdata (ebl);
103 memcpy (&ehdr->e_ident[EI_MAG0], ELFMAG, SELFMAG);
106 (void) gelf_update_ehdr (result->out.elf, ehdr);
    [all...]
  /external/elfutils/0.153/libdw/
dwarf_getcfi_elf.c 95 const GElf_Ehdr *ehdr, GElf_Addr *eh_frame_vaddr,
117 .e_ident = ehdr->e_ident,
147 getcfi_gnu_eh_frame (Elf *elf, const GElf_Ehdr *ehdr, const GElf_Phdr *phdr)
167 phdr->p_vaddr, ehdr,
209 getcfi_phdr (Elf *elf, const GElf_Ehdr *ehdr)
222 return getcfi_gnu_eh_frame (elf, ehdr, phdr);
230 getcfi_scn_eh_frame (Elf *elf, const GElf_Ehdr *ehdr,
253 hdr_vaddr, ehdr, &eh_frame_vaddr,
275 getcfi_shdr (Elf *elf, const GElf_Ehdr *ehdr)
304 return getcfi_scn_eh_frame (elf, ehdr, scn, shdr
323 GElf_Ehdr *ehdr = gelf_getehdr (elf, &ehdr_mem); local
    [all...]
dwarf_begin_elf.c 91 check_section (Dwarf *result, GElf_Ehdr *ehdr, Elf_Scn *scn, bool inscngrp)
121 const char *scnname = elf_strptr (result->elf, ehdr->e_shstrndx,
251 global_read (Dwarf *result, Elf *elf, GElf_Ehdr *ehdr)
256 result = check_section (result, ehdr, scn, false);
263 scngrp_read (Dwarf *result, Elf *elf, GElf_Ehdr *ehdr, Elf_Scn *scngrp)
293 result = check_section (result, ehdr, scn, true);
308 GElf_Ehdr *ehdr; local
313 ehdr = gelf_getehdr (elf, &ehdr_mem);
314 if (ehdr == NULL)
339 if ((BYTE_ORDER == LITTLE_ENDIAN && ehdr->e_ident[EI_DATA] == ELFDATA2MSB
    [all...]
  /system/core/libcutils/
debugger.c 41 char ehdr[EI_NIDENT]; local
42 ssize_t bytes = read(fd, &ehdr, sizeof(ehdr));
44 if (bytes != (ssize_t) sizeof(ehdr) || memcmp(ELFMAG, ehdr, SELFMAG) != 0) {
47 if (ehdr[EI_CLASS] == ELFCLASS32) {

Completed in 311 milliseconds

1 2 3 4 5 6 7