HomeSort by relevance Sort by last modified time
    Searched refs:inelf (Results 1 - 2 of 2) sorted by null

  /external/elfutils/tests/
ecp.c 45 Elf *inelf = elf_begin (infd, ELF_C_READ, NULL); local
46 if (inelf == NULL)
59 gelf_newehdr (outelf, gelf_getclass (inelf));
63 gelf_update_ehdr (outelf, (ehdr = gelf_getehdr (inelf, &ehdr_mem)));
77 gelf_update_phdr (outelf, cnt, gelf_getphdr (inelf, cnt, &phdr_mem));
82 while ((scn = elf_nextscn (inelf, scn)) != NULL)
100 elf_end (inelf);
  /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)),
258 GElf_Ehdr *ehdr = gelf_getehdr (inelf, &ehdr_mem);
270 gelf_getphdr (inelf, i, &phdr_mem)),
275 while ((scn = elf_nextscn (inelf, scn)) != NULL)
    [all...]

Completed in 60 milliseconds