Searched defs:ElfFile (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Delf_file.h36 // Used for compile time and runtime for ElfFile access. Because of
39 class ElfFile { class in namespace:art
41 static ElfFile* Open(File* file, bool writable, bool program_header_only, std::string* error_msg,
45 static ElfFile* Open(File* file, int mmap_prot, int mmap_flags, std::string* error_msg);
46 ~ElfFile();
94 explicit ElfFile(ElfFileImpl32* elf32);
95 explicit ElfFile(ElfFileImpl64* elf64);
100 DISALLOW_COPY_AND_ASSIGN(ElfFile);
H A Delf_file.cc1184 std::string reservation_name("ElfFile reservation for ");
1701 // TODO: Unfortunate ELFObjectFile has protected symbol access, so use ElfFile
1760 ElfFile::ElfFile(ElfFileImpl32* elf32) : elf32_(elf32), elf64_(nullptr) { function in class:art::ElfFile
1763 ElfFile::ElfFile(ElfFileImpl64* elf64) : elf32_(nullptr), elf64_(elf64) { function in class:art::ElfFile
1766 ElfFile::~ElfFile() {
1771 ElfFile* ElfFile
[all...]

Completed in 89 milliseconds