Lines Matching defs:sheader
170 static GElf_Shdr *elf_sec_hdr_by_idx(const pelfio_t elf, size_t idx, GElf_Shdr *sheader)
173 sheader->sh_name = elfio_section_get_name_string_offset(psection);
174 sheader->sh_type = elfio_section_get_type(psection);
175 sheader->sh_flags = elfio_section_get_flags(psection);
176 sheader->sh_addr = elfio_section_get_address(psection);
177 sheader->sh_offset = elfio_section_get_offset(psection);
178 sheader->sh_size = elfio_section_get_size(psection);
179 sheader->sh_link = elfio_section_get_link(psection);
180 sheader->sh_info = elfio_section_get_info(psection);
181 sheader->sh_addralign = elfio_section_get_addr_align(psection);
182 sheader->sh_entsize = elfio_section_get_entry_size(psection);
183 return sheader;