Searched defs:elf (Results 101 - 102 of 102) sorted by relevance

12345

/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Delfdump.c32 * Dump an elf file.
508 getphdr(Word phnum, Word *type_arr, Word type_cnt, const char *file, Elf *elf) argument
513 if ((phdr = elf_getphdr(elf)) == NULL) {
866 const char *file, Elf *elf, uint_t flags)
899 sizeof (phdr_types) / sizeof (*phdr_types), file, elf);
1696 uchar_t osabi, Elf *elf, uint_t flags)
1710 if ((phdr = elf_getphdr(elf)) == NULL) {
1778 interp(const char *file, Cache *cache, Word shnum, Word phnum, Elf *elf) argument
1796 sizeof (phdr_types) / sizeof (*phdr_types), file, elf);
4500 checksum(Elf *elf) argument
865 unwind(Cache *cache, Word shnum, Word phnum, Ehdr *ehdr, uchar_t osabi, const char *file, Elf *elf, uint_t flags) argument
1695 cap(const char *file, Cache *cache, Word shnum, Word phnum, Ehdr *ehdr, uchar_t osabi, Elf *elf, uint_t flags) argument
4544 shdr_cache(const char *file, Elf *elf, Ehdr *ehdr, size_t shstrndx, size_t shnum, Cache **cache_ret, Word flags) argument
4860 create_cache(const char *file, int fd, Elf *elf, Ehdr *ehdr, Cache **cache, size_t shstrndx, size_t *shnum, uint_t *flags) argument
4887 regular(const char *file, int fd, Elf *elf, uint_t flags, const char *wname, int wfd, uchar_t osabi) argument
[all...]
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c67 #include <sys/elf.h>
2170 _elfhdr elf; local
2185 if (read(fd, (void *)&elf, sizeof (_elfhdr)) < 0) {
2200 if (memcmp(elf.e_ident, ELFMAG, 4) != 0) {
2213 if (elf.e_ident[EI_CLASS] == ELFCLASS32) {
2215 } else if (elf.e_ident[EI_CLASS] == ELFCLASS64) {

Completed in 90 milliseconds

12345