Home
last modified time | relevance | path

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

/ndk/sources/host-tools/ndk-stack/elff/
Delf_file.cc47 sec_table_(NULL), in ElfFile()
71 if (sec_table_ != NULL) { in ~ElfFile()
72 delete[] reinterpret_cast<Elf_Byte*>(sec_table_); in ~ElfFile()
349 sec_table_ = new Elf_Byte[sec_table_size]; in initialize()
350 assert(sec_table_ != NULL); in initialize()
351 if (sec_table_ == NULL) { in initialize()
355 if (mapfile_read_at(elf_handle_, sec_table_off, sec_table_, in initialize()
445 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