/freebsd/usr.bin/elfdump/ |
H A D | elfdump.c | 96 offsetof(Elf32_Ehdr, e_ident[EI_CLASS]), 97 offsetof(Elf32_Ehdr, e_ident[EI_DATA]), 98 offsetof(Elf32_Ehdr, e_ident[EI_OSABI]), 99 offsetof(Elf32_Ehdr, e_type), offsetof(Elf32_Ehdr, e_machine), 100 offsetof(Elf32_Ehdr, e_version), offsetof(Elf32_Ehdr, e_entry), 101 offsetof(Elf32_Ehdr, e_phoff), offsetof(Elf32_Ehdr, e_shoff), 102 offsetof(Elf32_Ehdr, e_flags), offsetof(Elf32_Ehdr, e_ehsize), 103 offsetof(Elf32_Ehdr, e_phentsize), offsetof(Elf32_Ehdr, e_phnum), 104 offsetof(Elf32_Ehdr, e_shentsize), offsetof(Elf32_Ehdr, e_shnum), 105 offsetof(Elf32_Ehdr, e_shstrndx), [all …]
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | gelf_ehdr.c | 38 Elf32_Ehdr * 54 Elf32_Ehdr *eh32; in gelf_getehdr() 95 Elf32_Ehdr * 123 Elf32_Ehdr *eh32; in gelf_update_ehdr() 148 eh32 = (Elf32_Ehdr *) ehdr; in gelf_update_ehdr()
|
H A D | libelf_extended.c | 70 ((Elf32_Ehdr *) eh)->e_shnum = shnum & 0xFFFFU; in _libelf_setshnum() 100 ((Elf32_Ehdr *) eh)->e_shstrndx = shstrndx & 0xFFFFU; in _libelf_setshstrndx() 129 ((Elf32_Ehdr *) eh)->e_phnum = phnum & 0xFFFFU; in _libelf_setphnum()
|
H A D | libelf_ehdr.c | 179 phnum = ((Elf32_Ehdr *) ehdr)->e_phnum; in _libelf_ehdr() 180 shnum = ((Elf32_Ehdr *) ehdr)->e_shnum; in _libelf_ehdr() 181 shoff = ((Elf32_Ehdr *) ehdr)->e_shoff; in _libelf_ehdr() 182 strndx = ((Elf32_Ehdr *) ehdr)->e_shstrndx; in _libelf_ehdr()
|
H A D | libelf_phdr.c | 42 Elf32_Ehdr *eh32; in _libelf_getphdr() 69 eh32 = (Elf32_Ehdr *) ehdr; in _libelf_getphdr()
|
H A D | libelf_elfmachine.c | 41 Elf32_Ehdr *eh32; in _libelf_elfmachine()
|
H A D | elf_scn.c | 62 Elf32_Ehdr *eh32; in _libelf_load_section_headers() 91 eh32 = (Elf32_Ehdr *) ehdr; in _libelf_load_section_headers()
|
H A D | libelf.h | 234 Elf32_Ehdr *elf32_getehdr(Elf *_elf); 237 Elf32_Ehdr *elf32_newehdr(Elf *_elf);
|
H A D | elf_update.c | 518 Elf32_Ehdr *eh32; in _libelf_resync_elf() 896 Elf32_Ehdr *eh32; in _libelf_write_phdr() 913 eh32 = (Elf32_Ehdr *) ehdr; in _libelf_write_phdr() 960 Elf32_Ehdr *eh32; in _libelf_write_shdr() 975 eh32 = (Elf32_Ehdr *) ehdr; in _libelf_write_shdr()
|
H A D | gelf_phdr.c | 52 Elf32_Ehdr *eh32; in gelf_getphdr()
|
H A D | _libelf.h | 122 Elf32_Ehdr *e_ehdr32;
|
H A D | elf_types.m4 | 101 DEFINE_STRUCT(`Elf32_Ehdr',
|
/freebsd/usr.sbin/btxld/ |
H A D | elfh.h | 32 Elf32_Ehdr e; /* ELF header */
|
H A D | btxld.c | 324 const Elf32_Ehdr *ee; in gethdr() 363 if (hdr->size >= sizeof(Elf32_Ehdr) && IS_ELF(*ee)) { in gethdr()
|
/freebsd/cddl/contrib/opensolaris/lib/libctf/common/ |
H A D | ctf_lib.c | 142 ehdr_to_gelf(const Elf32_Ehdr *src, GElf_Ehdr *dst) in ehdr_to_gelf() 227 Elf32_Ehdr e32; in ctf_fdopen() 277 if (nbytes >= (ssize_t) sizeof (Elf32_Ehdr) && in ctf_fdopen() 299 Elf32_Ehdr e32 = hdr.e32; in ctf_fdopen()
|
/freebsd/lib/libkvm/ |
H A D | kvm_powerpc.c | 48 Elf32_Ehdr *eh; 53 valid_elf_header(Elf32_Ehdr *eh) in valid_elf_header()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/ |
H A D | NativeProcessELF.cpp | 39 GetELFImageInfoAddress<llvm::ELF::Elf32_Ehdr, llvm::ELF::Elf32_Phdr, in GetSharedLibraryInfoAddress() 112 llvm::ELF::Elf32_Ehdr, llvm::ELF::Elf32_Phdr, llvm::ELF::Elf32_Dyn>();
|
H A D | NativeProcessELF.h | 59 llvm::ELF::Elf32_Ehdr, llvm::ELF::Elf32_Phdr, llvm::ELF::Elf32_Dyn>();
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
H A D | DynamicLoaderFreeBSDKernel.cpp | 158 llvm::ELF::Elf32_Ehdr &header, in ReadELFHeader() 193 llvm::ELF::Elf32_Ehdr header; in CheckForKernelImageAtAddress() 276 llvm::ELF::Elf32_Ehdr elf_eheader; in ReadMemoryModule() 281 size_to_read = sizeof(llvm::ELF::Elf32_Ehdr) + in ReadMemoryModule()
|
/freebsd/sys/arm64/arm64/ |
H A D | elf32_machdep.c | 173 const Elf32_Ehdr *hdr; in elf32_arm_abi_supported() 176 hdr = (const Elf32_Ehdr *)imgp->image_header; in elf32_arm_abi_supported()
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | drti.c | 104 Elf32_Ehdr *elf; in dtrace_dof_init()
|
/freebsd/sys/sys/ |
H A D | elf32.h | 70 } Elf32_Ehdr; typedef
|
/freebsd/contrib/file/src/ |
H A D | readelf.h | 107 } Elf32_Ehdr; typedef
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | ELFObjectWriter.cpp | 315 : sizeof(ELF::Elf32_Ehdr)); in writeHeader() 1098 offsetof(ELF::Elf32_Ehdr, e_shoff)); in writeObject() 1099 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum); in writeObject()
|
/freebsd/stand/i386/isoboot/ |
H A D | isoboot.c | 325 Elf32_Ehdr eh; in load()
|