Lines Matching refs:elf
24 DwarfCU::DwarfCU(ElfFile* elf) in DwarfCU() argument
25 : elf_file_(elf), in DwarfCU()
37 DwarfCU* DwarfCU::create_instance(ElfFile* elf, const void* hdr) { in create_instance() argument
42 ret = new(elf) DwarfCUImpl<Dwarf64_CUHdr, Dwarf64_Off> in create_instance()
43 (elf, reinterpret_cast<const Dwarf64_CUHdr*>(hdr)); in create_instance()
45 ret = new(elf) DwarfCUImpl<Dwarf32_CUHdr, Dwarf32_Off> in create_instance()
46 (elf, reinterpret_cast<const Dwarf32_CUHdr*>(hdr)); in create_instance()
297 DwarfCUImpl<Dwarf_CUHdr, Dwarf_Off>::DwarfCUImpl(ElfFile* elf, in DwarfCUImpl() argument
299 : DwarfCU(elf), in DwarfCUImpl()
304 (INC_CPTR(elf->get_debug_abbrev_data(), in DwarfCUImpl()
305 elf->pull_val(hdr->abbrev_offset))); in DwarfCUImpl()
308 cu_size_ = elf->pull_val(hdr->size_hdr.size); in DwarfCUImpl()
309 version_ = elf->pull_val(hdr->version); in DwarfCUImpl()