Home
last modified time | relevance | path

Searched refs:Ehdr (Results 1 – 9 of 9) sorted by relevance

/bionic/libc/bionic/
Ddl_iterate_phdr_static.cpp39 ElfW(Ehdr)* ehdr = reinterpret_cast<ElfW(Ehdr)*>(&__executable_start); in dl_iterate_phdr()
64 ElfW(Ehdr)* ehdr_vdso = reinterpret_cast<ElfW(Ehdr)*>(getauxval(AT_SYSINFO_EHDR)); in dl_iterate_phdr()
Dvdso.cpp58 ElfW(Ehdr)* vdso_ehdr = reinterpret_cast<ElfW(Ehdr)*>(vdso_ehdr_addr); in __libc_init_vdso()
/bionic/tools/relocation_packer/src/
Delf_traits.h23 typedef Elf32_Ehdr Ehdr; typedef
36 static inline Ehdr* getehdr(Elf* elf) { return elf32_getehdr(elf); } in getehdr()
47 typedef Elf64_Ehdr Ehdr; typedef
60 static inline Ehdr* getehdr(Elf* elf) { return elf64_getehdr(elf); } in getehdr()
Delf_file.cc72 template <typename Ehdr>
73 static void VerboseLogElfHeader(const Ehdr* elf_header) { in VerboseLogElfHeader()
265 static void AdjustElfHeaderForHole(typename ELF::Ehdr* elf_header, in AdjustElfHeaderForHole()
438 const typename ELF::Ehdr* elf_header = ELF::getehdr(elf); in RewriteProgramHeadersForHole()
466 const typename ELF::Ehdr* elf_header = ELF::getehdr(elf); in GetDynamicSection()
627 typename ELF::Ehdr* elf_header = ELF::getehdr(elf); in ResizeSection()
/bionic/linker/
Dlinker_main.cpp57 static ElfW(Addr) get_elf_exec_load_bias(const ElfW(Ehdr)* elf);
142 ElfW(Ehdr)* ehdr_vdso = reinterpret_cast<ElfW(Ehdr)*>(args.getauxval(AT_SYSINFO_EHDR)); in add_vdso()
177 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(linker_base); in init_linker_info_for_gdb()
316 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(si->base);
469 static ElfW(Addr) get_elf_exec_load_bias(const ElfW(Ehdr)* elf) {
517 ElfW(Ehdr)* elf_hdr = reinterpret_cast<ElfW(Ehdr)*>(linker_addr);
Dlinker_phdr.h77 ElfW(Ehdr) header_;
Dlinker_phdr.cpp1083 const ElfW(Ehdr)* ehdr = reinterpret_cast<const ElfW(Ehdr)*>(elf_addr); in FindPhdr()
/bionic/libc/malloc_debug/
DMapData.cpp86 ElfW(Ehdr) ehdr; in read_loadbase()
87 if (!get_val<ElfW(Half)>(entry, addr + offsetof(ElfW(Ehdr), e_phnum), &ehdr.e_phnum)) { in read_loadbase()
90 if (!get_val<ElfW(Off)>(entry, addr + offsetof(ElfW(Ehdr), e_phoff), &ehdr.e_phoff)) { in read_loadbase()
/bionic/tests/
Dlink_test.cpp55 const ElfW(Ehdr)* ehdr = reinterpret_cast<const ElfW(Ehdr)*>(info->dlpi_addr + in TEST()