Home
last modified time | relevance | path

Searched refs:_libelf_ehdr (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/elftoolchain/libelf/
H A Dgelf_ehdr.c41 return (_libelf_ehdr(e, ELFCLASS32, 0)); in elf32_getehdr()
47 return (_libelf_ehdr(e, ELFCLASS64, 0)); in elf64_getehdr()
64 if ((eh32 = _libelf_ehdr(e, ELFCLASS32, 0)) == NULL) in gelf_getehdr()
88 if ((eh64 = _libelf_ehdr(e, ELFCLASS64, 0)) == NULL) in gelf_getehdr()
98 return (_libelf_ehdr(e, ELFCLASS32, 1)); in elf32_newehdr()
104 return (_libelf_ehdr(e, ELFCLASS64, 1)); in elf64_newehdr()
112 return (_libelf_ehdr(e, ec, 1)); in gelf_newehdr()
137 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) in gelf_update_ehdr()
H A Delf_shstrndx.c46 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL) in _libelf_getshdrstrndx()
74 ((eh = _libelf_ehdr(e, ec, 0)) == NULL)) { in elf_setshstrndx()
H A Dgelf_phdr.c72 if ((eh32 = _libelf_ehdr(e, ELFCLASS32, 0)) == NULL || in gelf_getphdr()
88 if ((eh64 = _libelf_ehdr(e, ELFCLASS64, 0)) == NULL || in gelf_getphdr()
143 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) in gelf_update_phdr()
H A Dlibelf_phdr.c63 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) in _libelf_getphdr()
123 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) { in _libelf_newphdr()
H A Delf_phnum.c46 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL) in _libelf_getphdrnum()
H A Delf_shnum.c46 if ((eh = _libelf_ehdr(e, ec, 0)) == NULL) in _libelf_getshdrnum()
H A Delf_scn.c157 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) in elf_getscn()
206 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) in elf_newscn()
H A Delf_update.c530 if ((ehdr = _libelf_ehdr(e, ec, 0)) == NULL) in _libelf_resync_elf()
860 ehdr = _libelf_ehdr(e, ec, 0); in _libelf_write_ehdr()
906 ehdr = _libelf_ehdr(e, ec, 0); in _libelf_write_phdr()
969 ehdr = _libelf_ehdr(e, ec, 0); in _libelf_write_shdr()
H A D_libelf.h216 void *_libelf_ehdr(Elf *_e, int _elfclass, int _allocate);
H A Dlibelf_ehdr.c106 _libelf_ehdr(Elf *e, int ec, int allocate) in _libelf_ehdr() function