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

  /external/elfutils/tests/
ecp.c 41 Elf *inelf = elf_begin (infd, ELF_C_READ, NULL); local
42 if (inelf == NULL)
55 gelf_newehdr (outelf, gelf_getclass (inelf));
59 gelf_update_ehdr (outelf, (ehdr = gelf_getehdr (inelf, &ehdr_mem)));
73 gelf_update_phdr (outelf, cnt, gelf_getphdr (inelf, cnt, &phdr_mem));
78 while ((scn = elf_nextscn (inelf, scn)) != NULL)
96 elf_end (inelf);
  /external/elfutils/src/
unstrip.c 248 /* Copy INELF to newly-created OUTELF, exit via error for any problems. */
250 copy_elf (Elf *outelf, Elf *inelf)
252 ELF_CHECK (gelf_newehdr (outelf, gelf_getclass (inelf)),
256 GElf_Ehdr *ehdr = gelf_getehdr (inelf, &ehdr_mem);
261 ELF_CHECK (elf_getphdrnum (inelf, &phnum) == 0,
272 gelf_getphdr (inelf, i, &phdr_mem)),
277 while ((scn = elf_nextscn (inelf, scn)) != NULL)
    [all...]

Completed in 219 milliseconds