Home | History | Annotate | Download | only in src

Lines Matching refs:Elf

5 // Target-specific ELF type traits.
10 #include "elf.h"
17 // ELF is a traits structure used to provide convenient aliases for
18 // 32/64 bit Elf types and functions, depending on the target file.
36 static inline Ehdr* getehdr(Elf* elf) { return elf32_getehdr(elf); }
37 static inline Phdr* getphdr(Elf* elf) { return elf32_getphdr(elf); }
60 static inline Ehdr* getehdr(Elf* elf) { return elf64_getehdr(elf); }
61 static inline Phdr* getphdr(Elf* elf) { return elf64_getphdr(elf); }