Home
last modified time | relevance | path

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

/ndk/sources/host-tools/ndk-stack/elff/
Delf_file.cc48 sec_count_(0), in ElfFile()
337 sec_count_ = pull_val(header->e_shnum); in initialize()
343 assert(sec_table_off != 0 && sec_count_ != 0); in initialize()
344 if (sec_table_off == 0 || sec_count_ == 0) { in initialize()
348 const size_t sec_table_size = sec_count_ * sec_entry_size_; in initialize()
447 for (Elf_Half sec = 0; sec < sec_count_; sec++) { in get_section_info_by_name()
Delf_file.h320 assert(index < sec_count_); in get_section_by_index()
321 if (index < sec_count_) { in get_section_by_index()
526 Elf_Half sec_count_; variable