Searched refs:EShdr (Results 1 – 1 of 1) sorted by relevance
725 const Elf_Shdr *EShdr = getSection(Sec); in getSectionContents() local726 if (EShdr->sh_type == ELF::SHT_NOBITS) in getSectionContents()730 (uintptr_t)base() + EShdr->sh_offset, EShdr->sh_size)) in getSectionContents()732 return makeArrayRef((const uint8_t *)base() + EShdr->sh_offset, in getSectionContents()733 EShdr->sh_size); in getSectionContents()753 const Elf_Shdr *EShdr = getSection(Sec); in isSectionData() local754 return EShdr->sh_type == ELF::SHT_PROGBITS && in isSectionData()755 EShdr->sh_flags & ELF::SHF_ALLOC && in isSectionData()756 !(EShdr->sh_flags & ELF::SHF_EXECINSTR); in isSectionData()761 const Elf_Shdr *EShdr = getSection(Sec); in isSectionBSS() local[all …]