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

  /external/elfutils/tests/
ecp.c 54 Elf *outelf = elf_begin (outfd, ELF_C_WRITE, NULL); local
55 if (outelf == NULL)
59 gelf_newehdr (outelf, gelf_getclass (inelf));
63 gelf_update_ehdr (outelf, (ehdr = gelf_getehdr (inelf, &ehdr_mem)));
69 if (gelf_newphdr (outelf, ehdr->e_phnum) == 0)
77 gelf_update_phdr (outelf, cnt, gelf_getphdr (inelf, cnt, &phdr_mem));
84 Elf_Scn *newscn = elf_newscn (outelf);
92 elf_flagelf (outelf, ELF_C_SET, ELF_F_LAYOUT);
94 if (elf_update (outelf, ELF_C_WRITE) == -1)
97 elf_end (outelf);
    [all...]
  /external/elfutils/src/
unstrip.c 250 /* Copy INELF to newly-created OUTELF, exit via error for any problems. */
252 copy_elf (Elf *outelf, Elf *inelf)
254 ELF_CHECK (gelf_newehdr (outelf, gelf_getclass (inelf)),
259 ELF_CHECK (gelf_update_ehdr (outelf, ehdr),
264 ELF_CHECK (gelf_newphdr (outelf, ehdr->e_phnum),
269 ELF_CHECK (gelf_update_phdr (outelf, i,
277 Elf_Scn *newscn = elf_newscn (outelf);
750 collect_symbols (Elf *outelf, bool rel, Elf_Scn *symscn, Elf_Scn *strscn,
789 GElf_Shdr *shdr = gelf_getshdr (elf_getscn (outelf, s->shndx),
1901 Elf *outelf = elf_begin (outfd, ELF_C_WRITE, NULL); local
    [all...]
ld.h 792 Elf *outelf; member in struct:ld_state
    [all...]

Completed in 251 milliseconds