Lines Matching refs:elf_file_
202 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_INPUTS); in find_incremental_inputs_sections()
207 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_SYMTAB); in find_incremental_inputs_sections()
210 if (this->elf_file_.section_link(symtab_shndx) != inputs_shndx) in find_incremental_inputs_sections()
214 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_RELOCS); in find_incremental_inputs_sections()
217 if (this->elf_file_.section_link(relocs_shndx) != inputs_shndx) in find_incremental_inputs_sections()
221 this->elf_file_.find_section_by_type(elfcpp::SHT_GNU_INCREMENTAL_GOT_PLT); in find_incremental_inputs_sections()
224 if (this->elf_file_.section_link(got_plt_shndx) != inputs_shndx) in find_incremental_inputs_sections()
227 unsigned int strtab_shndx = this->elf_file_.section_link(inputs_shndx); in find_incremental_inputs_sections()
229 || strtab_shndx > this->elf_file_.shnum() in find_incremental_inputs_sections()
230 || this->elf_file_.section_type(strtab_shndx) != elfcpp::SHT_STRTAB) in find_incremental_inputs_sections()
263 Location inputs_location(this->elf_file_.section_contents(inputs_shndx)); in setup_readers()
264 Location symtab_location(this->elf_file_.section_contents(symtab_shndx)); in setup_readers()
265 Location relocs_location(this->elf_file_.section_contents(relocs_shndx)); in setup_readers()
266 Location got_plt_location(this->elf_file_.section_contents(got_plt_shndx)); in setup_readers()
267 Location strtab_location(this->elf_file_.section_contents(strtab_shndx)); in setup_readers()
290 this->elf_file_.find_section_by_type(elfcpp::SHT_SYMTAB); in setup_readers()
292 this->main_symtab_loc_ = this->elf_file_.section_contents(main_symtab_shndx); in setup_readers()
296 this->elf_file_.section_link(main_symtab_shndx); in setup_readers()
298 && main_strtab_shndx < this->elf_file_.shnum()); in setup_readers()
299 this->main_strtab_loc_ = this->elf_file_.section_contents(main_strtab_shndx); in setup_readers()
528 const off_t shoff = this->elf_file_.shoff(); in do_init_layout()
529 const unsigned int shnum = this->elf_file_.shnum(); in do_init_layout()
530 const unsigned int shstrndx = this->elf_file_.shstrndx(); in do_init_layout()
532 Location shstrndx_location(this->elf_file_.section_contents(shstrndx)); in do_init_layout()