Home | History | Annotate | Download | only in elff

Lines Matching refs:ElfFile

14  * Contains declaration of ElfFile classes that encapsulate an ELF file.
35 class ElfFile {
37 /* Constructs ElfFile instance. */
38 ElfFile();
40 /* Destructs ElfFile instance. */
41 virtual ~ElfFile();
49 * Initialized ElfFileImpl instance, typecasted back to ElfFile object on
53 static ElfFile* Create(const char* path);
112 /* Initializes ElfFile instance. This method is called from Create method of
573 class ElfFileImpl : protected ElfFile {
575 * ElfFile::Create() method only. */
576 friend class ElfFile;
588 * See ElfFile::initialize().
594 * See ElfFile::parse_compilation_units().