Lines Matching defs:sh_flags
956 if (header.sh_flags & SHF_ALLOC)
1712 if (H.sh_flags & SHF_EXECINSTR)
1716 if (H.sh_flags & SHF_ALLOC)
1746 if (H.sh_flags & SHF_ALLOC)
1748 if (H.sh_flags & SHF_WRITE)
1750 if (H.sh_flags & SHF_EXECINSTR)
1793 addr_t Size = H.sh_flags & SHF_ALLOC ? H.sh_size : 0;
1799 Segments.empty() && (H.sh_flags & SHF_ALLOC)) {
1835 if ((H.sh_flags & SHF_ALLOC) && It.valid()) {
1952 header.sh_flags & SHF_TLS ? tls_provider : regular_provider;
1977 header.sh_flags, // Flags for this section.
1981 section_sp->SetIsThreadSpecific(header.sh_flags & SHF_TLS);
3408 s->Printf(" %8.8" PRIx64 " (", sh.sh_flags);
3409 DumpELFSectionHeader_sh_flags(s, sh.sh_flags);
3447 // Dump an token value for the ELF section header member sh_flags
3449 elf_xword sh_flags) {
3450 *s << ((sh_flags & SHF_WRITE) ? "WRITE" : " ")
3451 << (((sh_flags & SHF_WRITE) && (sh_flags & SHF_ALLOC)) ? '+' : ' ')
3452 << ((sh_flags & SHF_ALLOC) ? "ALLOC" : " ")
3453 << (((sh_flags & SHF_ALLOC) && (sh_flags & SHF_EXECINSTR)) ? '+' : ' ')
3454 << ((sh_flags & SHF_EXECINSTR) ? "EXECINSTR" : " ");