Searched refs:ehdr (Results 1 - 25 of 89) sorted by relevance

1234

/external/elfutils/tests/
H A Dupdate1.c45 Elf32_Ehdr *ehdr; local
65 ehdr = elf32_newehdr (elf);
66 if (ehdr == NULL)
76 printf (" %02x", ehdr->e_ident[i]);
81 ehdr->e_type, ehdr->e_machine, ehdr->e_version, ehdr->e_entry,
82 ehdr->e_phoff, ehdr
[all...]
H A Dupdate2.c45 Elf32_Ehdr *ehdr; local
66 ehdr = elf32_newehdr (elf);
67 if (ehdr == NULL)
77 printf (" %02x", ehdr->e_ident[i]);
82 ehdr->e_type, ehdr->e_machine, ehdr->e_version, ehdr->e_entry,
83 ehdr->e_phoff, ehdr
[all...]
H A Dupdate3.c47 Elf32_Ehdr *ehdr; local
75 ehdr = elf32_newehdr (elf);
76 if (ehdr == NULL)
86 printf (" %02x", ehdr->e_ident[i]);
91 ehdr->e_type, ehdr->e_machine, ehdr->e_version, ehdr->e_entry,
92 ehdr->e_phoff, ehdr
[all...]
H A Dnewfile.c34 print_ehdr (Elf32_Ehdr *ehdr) argument
39 printf (" %02x", ehdr->e_ident[n]);
45 ehdr->e_type,
46 ehdr->e_machine,
47 ehdr->e_version,
48 ehdr->e_entry,
49 ehdr->e_phoff,
50 ehdr->e_shoff,
51 ehdr->e_flags,
52 ehdr
93 Elf32_Ehdr *ehdr = elf32_getehdr (elf); local
[all...]
H A Dupdate4.c48 Elf32_Ehdr *ehdr; local
80 ehdr = elf32_newehdr (elf);
81 if (ehdr == NULL)
91 printf (" %02x", ehdr->e_ident[i]);
96 ehdr->e_type, ehdr->e_machine, ehdr->e_version, ehdr->e_entry,
97 ehdr->e_phoff, ehdr
[all...]
H A Dsaridx.c202 GElf_Ehdr ehdr; local
205 if (gelf_getehdr (subelf, &ehdr) == NULL)
210 ehdr.e_ident[EI_CLASS] == ELFCLASS32
213 ehdr.e_ident[EI_DATA] == ELFDATA2LSB
216 ehdr.e_type == ET_REL
218 : (ehdr.e_type == ET_EXEC
220 : (ehdr.e_type == ET_DYN
224 (ehdr.e_machine >= (sizeof (machines)
226 || machines[ehdr.e_machine] == NULL)
228 : machines[ehdr
[all...]
H A Decp.c62 GElf_Ehdr *ehdr; local
63 gelf_update_ehdr (outelf, (ehdr = gelf_getehdr (inelf, &ehdr_mem)));
65 if (ehdr->e_phnum > 0)
69 if (gelf_newphdr (outelf, ehdr->e_phnum) == 0)
73 for (cnt = 0; cnt < ehdr->e_phnum; ++cnt)
/external/elfutils/libebl/
H A Debl_check_special_symbol.c59 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);
H A Deblbsspltp.c59 ebl_bss_plt_p (ebl, ehdr)
61 GElf_Ehdr *ehdr;
63 return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
H A Deblsectionstripp.c59 ebl_section_strip_p (Ebl *ebl, const GElf_Ehdr *ehdr, const GElf_Shdr *shdr, argument
77 const char *s_l = elf_strptr (ebl->elf, ehdr->e_shstrndx,
/external/elfutils/libelf/
H A Delf_getident.c80 || (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);
H A Dgelf_update_ehdr.c79 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));
H A Delf_getshstrndx.c86 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
[all...]
H A Delf32_updatenull.c72 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));
105 update_if_changed (ehdr
[all...]
H A Dgelf_getehdr.c79 /* 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));
H A Delf32_newehdr.c92 if (elf->state.ELFW(elf,LIBELFBITS).ehdr == NULL)
95 elf->state.ELFW(elf,LIBELFBITS).ehdr =
99 memset (elf->state.ELFW(elf,LIBELFBITS).ehdr, '\0',
106 result = elf->state.ELFW(elf,LIBELFBITS).ehdr;
H A Delf_newdata.c77 || (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/
H A Dprint-ipfc.c84 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));
H A Dprint-token.c105 struct ether_header ehdr; local
119 extract_token_addrs(trp, (char*)ESRC(&ehdr), (char*)EDST(&ehdr));
124 *ESRC(&ehdr) &= 0x7f;
127 token_hdr_print(trp, length, ESRC(&ehdr), EDST(&ehdr));
146 token_hdr_print(trp, length, ESRC(&ehdr), EDST(&ehdr));
158 if (llc_print(p, length, caplen, ESRC(&ehdr), EDST(&ehdr),
[all...]
/external/qemu/
H A Delf_ops.h1 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
184 struct elfhdr ehdr; local
[all...]
/external/elfutils/libdwfl/
H A Delf-from-memory.c117 } 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
[all...]
/external/elfutils/libdw/
H A Ddwarf_begin_elf.c88 check_section (Dwarf *result, GElf_Ehdr *ehdr, Elf_Scn *scn, bool inscngrp) argument
118 const char *scnname = elf_strptr (result->elf, ehdr->e_shstrndx,
176 global_read (Dwarf *result, Elf *elf, GElf_Ehdr *ehdr) argument
181 result = check_section (result, ehdr, scn, false);
188 scngrp_read (Dwarf *result, Elf *elf, GElf_Ehdr *ehdr, Elf_Scn *scngrp) argument
216 result = check_section (result, ehdr, scn, true);
231 GElf_Ehdr *ehdr; local
236 ehdr = gelf_getehdr (elf, &ehdr_mem);
237 if (ehdr == NULL)
260 if ((BYTE_ORDER == LITTLE_ENDIAN && ehdr
[all...]
/external/valgrind/main/coregrind/
H A Dlauncher-linux.c172 const Elf32_Ehdr *ehdr = (Elf32_Ehdr *)header; local
175 if (ehdr->e_machine == EM_386 &&
176 (ehdr->e_ident[EI_OSABI] == ELFOSABI_SYSV ||
177 ehdr->e_ident[EI_OSABI] == ELFOSABI_LINUX)) {
181 if (ehdr->e_machine == EM_ARM &&
182 (ehdr->e_ident[EI_OSABI] == ELFOSABI_SYSV ||
183 ehdr->e_ident[EI_OSABI] == ELFOSABI_LINUX)) {
188 if (ehdr->e_machine == EM_PPC &&
189 (ehdr->e_ident[EI_OSABI] == ELFOSABI_SYSV ||
190 ehdr
196 const Elf64_Ehdr *ehdr = (Elf64_Ehdr *)header; local
[all...]
/external/elfutils/backends/
H A Dppc_symbol.c81 find_dyn_got (Elf *elf, GElf_Ehdr *ehdr, GElf_Addr *addr) argument
83 for (int i = 0; i < ehdr->e_phnum; ++i)
117 ppc_check_special_symbol (Elf *elf, GElf_Ehdr *ehdr, const GElf_Sym *sym, argument
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) argument
157 return ! find_dyn_got (elf, ehdr, &addr);
/external/elfutils/libasm/
H A Dasm_begin.c69 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...]

Completed in 845 milliseconds

1234