Home
last modified time | relevance | path

Searched refs:sec_table_ (Results 1 – 2 of 2) sorted by relevance

/external/qemu/elff/
Delf_file.cc38 : sec_table_(NULL), in ElfFile()
66 if (sec_table_ != NULL) { in ~ElfFile()
67 delete[] reinterpret_cast<Elf_Byte*>(sec_table_); in ~ElfFile()
344 sec_table_ = new Elf_Byte[sec_table_size]; in initialize()
345 assert(sec_table_ != NULL); in initialize()
346 if (sec_table_ == NULL) { in initialize()
350 if (mapfile_read_at(elf_handle_, sec_table_off, sec_table_, in initialize()
440 reinterpret_cast<const Elf_SHdr<Elf_Addr, Elf_Off>*>(sec_table_); in get_section_info_by_name()
Delf_file.h322 return INC_CPTR(sec_table_, static_cast<size_t>(index) * sec_entry_size_); in get_section_by_index()
523 void* sec_table_; variable