Home
last modified time | relevance | path

Searched refs:Elf_Word (Results 1 – 3 of 3) sorted by relevance

/art/runtime/
Delf_file_impl.h36 using Elf_Word = typename ElfTypes::Word; variable
76 Elf_Word GetProgramHeaderNum() const;
77 Elf_Phdr* GetProgramHeader(Elf_Word) const;
79 Elf_Word GetSectionHeaderNum() const;
80 Elf_Shdr* GetSectionHeader(Elf_Word) const;
81 Elf_Shdr* FindSectionByType(Elf_Word type) const;
89 static bool IsSymbolSectionType(Elf_Word section_type);
90 Elf_Word GetSymbolNum(Elf_Shdr&) const;
91 Elf_Sym* GetSymbol(Elf_Word section_type, Elf_Word i) const;
95 Elf_Addr FindSymbolAddress(Elf_Word section_type,
[all …]
Delf_file.cc204 for (Elf_Word i = 0; i < GetSectionHeaderNum(); i++) { in Setup()
307 Elf_Word target_index = 0; in CheckSectionsLinked()
309 for (Elf_Word i = 0; i < GetSectionHeaderNum(); i++) { in CheckSectionsLinked()
582 Elf_Word section_type) const { in GetSymbolSectionStart()
602 Elf_Word section_type) const { in GetStringSectionStart()
619 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Word section_type, in GetString()
620 Elf_Word i) const { in GetString()
678 typename ElfTypes::Phdr* ElfFileImpl<ElfTypes>::GetProgramHeader(Elf_Word i) const { in GetProgramHeader()
686 typename ElfTypes::Phdr* ElfFileImpl<ElfTypes>::FindProgamHeaderByType(Elf_Word type) const { in FindProgamHeaderByType()
687 for (Elf_Word i = 0; i < GetProgramHeaderNum(); i++) { in FindProgamHeaderByType()
[all …]
/art/libelffile/elf/
Delf_builder.h79 using Elf_Word = typename ElfTypes::Word; variable
92 Elf_Word type, in Section()
93 Elf_Word flags, in Section()
95 Elf_Word info, in Section()
96 Elf_Word align, in Section()
97 Elf_Word entsize) in Section()
117 void AllocateVirtualMemory(Elf_Word size) { in AllocateVirtualMemory()
121 void AllocateVirtualMemory(Elf_Addr addr, Elf_Word size) { in AllocateVirtualMemory()
123 Elf_Word align = AddSection(); in AllocateVirtualMemory()
135 Elf_Word align = AddSection(); in Start()
[all …]