Lines Matching defs:sheader
1087 static Elf64_Shdr *elf_sec_hdr_by_idx(pelfio_t elf, size_t idx, Elf64_Shdr *sheader)
1091 sheader->sh_name = elfio_section_get_name_string_offset(psection);
1092 sheader->sh_type = elfio_section_get_type(psection);
1093 sheader->sh_flags = elfio_section_get_flags(psection);
1094 sheader->sh_addr = elfio_section_get_address(psection);
1095 sheader->sh_offset = elfio_section_get_offset(psection);
1096 sheader->sh_size = elfio_section_get_size(psection);
1097 sheader->sh_link = elfio_section_get_link(psection);
1098 sheader->sh_info = elfio_section_get_info(psection);
1099 sheader->sh_addralign = elfio_section_get_addr_align(psection);
1100 sheader->sh_entsize = elfio_section_get_entry_size(psection);
1102 return sheader;