Home
last modified time | relevance | path

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

/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_elf_view.h20 class ElfView {
22 ElfView() { ::memset(this, 0, sizeof(*this)); } in ElfView() function
24 ~ElfView() {} in ~ElfView()
63 DynamicIterator(const ElfView* view) { in DynamicIterator()
Dcrazy_linker_elf_relro.h15 class ElfView; variable
54 bool CopyFromRelocated(const ElfView* view,
Dcrazy_linker_elf_symbols.h14 class ElfView; variable
23 bool Init(const ElfView* view);
Dcrazy_linker_elf_view.cpp11 bool ElfView::InitUnmapped(ELF::Addr load_address, in InitUnmapped()
111 bool ElfView::ProtectRelroSection(Error* error) { in ProtectRelroSection()
Dcrazy_linker_elf_relocations.h15 class ElfView; variable
25 bool Init(const ElfView* view, Error* error);
Dcrazy_linker_shared_library.h160 ElfView::DynamicIterator iter_;
170 ElfView view_;
Dcrazy_linker_elf_symbols.cpp29 bool ElfSymbols::Init(const ElfView* view) { in Init()
31 ElfView::DynamicIterator dyn(view); in Init()
Dcrazy_linker_elf_relro.cpp110 bool SharedRelro::CopyFromRelocated(const ElfView* view, in CopyFromRelocated()
Dcrazy_linker_elf_relocations.cpp136 bool ElfRelocations::Init(const ElfView* view, Error* error) { in Init()
148 ElfView::DynamicIterator dyn(view); in Init()
Dcrazy_linker_shared_library.cpp215 ElfView::DynamicIterator dyn(&view_); in Load()