Home
last modified time | relevance | path

Searched refs:EShdr (Results 1 – 1 of 1) sorted by relevance

/external/llvm/include/llvm/Object/
DELFObjectFile.h587 const Elf_Shdr *EShdr = getSection(Sec); in getSectionContents() local
588 Result = StringRef((const char *)base() + EShdr->sh_offset, EShdr->sh_size); in getSectionContents()
609 const Elf_Shdr *EShdr = getSection(Sec); in isSectionData() local
610 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() local
617 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() local
662 uintX_t Type = EShdr->sh_type; in getRelocatedSection()
[all …]