Searched refs:EShdr (Results 1 – 1 of 1) sorted by relevance
924 const Elf_Shdr *EShdr = getSection(Sec); in getSectionContents() local925 if (EShdr->sh_type == ELF::SHT_NOBITS) in getSectionContents()929 (uintptr_t)base() + EShdr->sh_offset, EShdr->sh_size)) in getSectionContents()931 return ArrayRef((const uint8_t *)base() + EShdr->sh_offset, EShdr->sh_size); in getSectionContents()951 const Elf_Shdr *EShdr = getSection(Sec); in isSectionData() local952 return EShdr->sh_type == ELF::SHT_PROGBITS && in isSectionData()953 EShdr->sh_flags & ELF::SHF_ALLOC && in isSectionData()954 !(EShdr->sh_flags & ELF::SHF_EXECINSTR); in isSectionData()959 const Elf_Shdr *EShdr = getSection(Sec); in isSectionBSS() local960 return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) && in isSectionBSS()[all …]