Lines Matching defs:sheader
726 static Elf64_Shdr *elf_sec_hdr_by_idx(const struct bpf_object *obj, size_t idx, Elf64_Shdr *sheader);
3510 static Elf64_Shdr *elf_sec_hdr_by_idx(const struct bpf_object *obj, size_t idx, Elf64_Shdr *sheader)
3514 sheader->sh_name = elfio_section_get_name_string_offset(psection);
3515 sheader->sh_type = elfio_section_get_type(psection);
3516 sheader->sh_flags = elfio_section_get_flags(psection);
3517 sheader->sh_addr = elfio_section_get_address(psection);
3518 sheader->sh_offset = elfio_section_get_offset(psection);
3519 sheader->sh_size = elfio_section_get_size(psection);
3520 sheader->sh_link = elfio_section_get_link(psection);
3521 sheader->sh_info = elfio_section_get_info(psection);
3522 sheader->sh_addralign = elfio_section_get_addr_align(psection);
3523 sheader->sh_entsize = elfio_section_get_entry_size(psection);
3525 return sheader;