Searched refs:EShdr (Results 1 – 1 of 1) sorted by relevance
587 const Elf_Shdr *EShdr = getSection(Sec); in getSectionContents() local588 Result = StringRef((const char *)base() + EShdr->sh_offset, EShdr->sh_size); in getSectionContents()609 const Elf_Shdr *EShdr = getSection(Sec); in isSectionData() local610 return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) && in isSectionData()611 EShdr->sh_type == ELF::SHT_PROGBITS; in isSectionData()616 const Elf_Shdr *EShdr = getSection(Sec); in isSectionBSS() local617 return EShdr->sh_flags & (ELF::SHF_ALLOC | ELF::SHF_WRITE) && in isSectionBSS()618 EShdr->sh_type == ELF::SHT_NOBITS; in isSectionBSS()661 const Elf_Shdr *EShdr = getSection(Sec); in getRelocatedSection() local662 uintX_t Type = EShdr->sh_type; in getRelocatedSection()[all …]