Searched refs:ElfFile (Results 1 – 9 of 9) sorted by relevance
/external/qemu/elff/ |
D | elff_api.cc | 29 ElfFile* elf_file = ElfFile::Create(elf_file_path); in elff_init() 37 delete reinterpret_cast<ElfFile*>(handle); in elff_close() 49 return reinterpret_cast<ElfFile*>(handle)->is_exec(); in elff_is_exec() 63 if (reinterpret_cast<ElfFile*>(handle)->get_pc_address_info(address, in elff_get_pc_address_info() 78 reinterpret_cast<ElfFile*>(handle)->free_pc_address_info(address_info); in elff_free_pc_address_info()
|
D | elf_file.cc | 37 ElfFile::ElfFile() in ElfFile() function in ElfFile 50 ElfFile::~ElfFile() { in ~ElfFile() 76 ElfFile* ElfFile::Create(const char* path) { in Create() 77 ElfFile* ret = NULL; in Create() 141 bool ElfFile::initialize(const Elf_CommonHdr* elf_hdr, const char* path) { in initialize() 171 bool ElfFile::get_pc_address_info(Elf_Xword address, in get_pc_address_info() 309 void ElfFile::free_pc_address_info(Elf_AddressInfo* address_info) const { in free_pc_address_info() 325 if (!ElfFile::initialize(elf_hdr, path)) { in initialize()
|
D | dwarf_cu.h | 103 friend class ElfFile; variable 109 explicit DwarfCU(ElfFile* elf); 125 static DwarfCU* create_instance(ElfFile* elf, const void* hdr); 146 ElfFile* elf_file() const { in elf_file() 299 ElfFile* elf_file_; 335 DwarfCUImpl(ElfFile* elf, const Dwarf_CUHdr* hdr);
|
D | elf_file.h | 35 class ElfFile { 38 ElfFile(); 41 virtual ~ElfFile(); 53 static ElfFile* Create(const char* path); 573 class ElfFileImpl : protected ElfFile { 576 friend class ElfFile; variable
|
D | elf_alloc.h | 26 class ElfFile; variable 131 void* operator new(size_t size, const ElfFile* elf);
|
D | dwarf_die.h | 23 class ElfFile; variable 50 ElfFile* elf_file() const;
|
D | elf_alloc.cc | 60 void* DwarfAllocBase::operator new(size_t size, const ElfFile* elf) { in operator new()
|
D | dwarf_cu.cc | 24 DwarfCU::DwarfCU(ElfFile* elf) in DwarfCU() 37 DwarfCU* DwarfCU::create_instance(ElfFile* elf, const void* hdr) { in create_instance() 297 DwarfCUImpl<Dwarf_CUHdr, Dwarf_Off>::DwarfCUImpl(ElfFile* elf, in DwarfCUImpl()
|
D | dwarf_die.cc | 33 ElfFile* DIEObject::elf_file() const { in elf_file()
|