Lines Matching refs:shdr
440 Ef_shdr shdr(v.data()); in initialize_shnum()
443 this->shnum_ = shdr.get_sh_size(); in initialize_shnum()
447 this->shstrndx_ = shdr.get_sh_link(); in initialize_shnum()
487 Ef_shdr shdr(v.data() + This::shdr_size * i); in find_section_by_type()
488 if (shdr.get_sh_type() == type) in find_section_by_type()
519 Ef_shdr shdr(v.data()); in section_name()
520 sh_name = shdr.get_sh_name(); in section_name()
567 Ef_shdr shdr(v.data()); in section_contents()
568 return typename File::Location(shdr.get_sh_offset(), shdr.get_sh_size()); in section_contents()
586 Ef_shdr shdr(v.data()); in section_size()
587 return shdr.get_sh_size(); in section_size()
605 Ef_shdr shdr(v.data()); in section_flags()
606 return shdr.get_sh_flags(); in section_flags()
624 Ef_shdr shdr(v.data()); in section_addr()
625 return shdr.get_sh_addr(); in section_addr()
643 Ef_shdr shdr(v.data()); in section_type()
644 return shdr.get_sh_type(); in section_type()
662 Ef_shdr shdr(v.data()); in section_link()
663 return shdr.get_sh_link(); in section_link()
681 Ef_shdr shdr(v.data()); in section_info()
682 return shdr.get_sh_info(); in section_info()
700 Ef_shdr shdr(v.data()); in section_addralign()
701 return shdr.get_sh_addralign(); in section_addralign()