Lines Matching defs:sh_flags
966 if (header.sh_flags & SHF_ALLOC)
1707 if (H.sh_flags & SHF_EXECINSTR)
1711 if (H.sh_flags & SHF_ALLOC)
1741 if (H.sh_flags & SHF_ALLOC)
1743 if (H.sh_flags & SHF_WRITE)
1745 if (H.sh_flags & SHF_EXECINSTR)
1788 addr_t Size = H.sh_flags & SHF_ALLOC ? H.sh_size : 0;
1794 Segments.empty() && (H.sh_flags & SHF_ALLOC)) {
1830 if ((H.sh_flags & SHF_ALLOC) && It.valid()) {
1947 header.sh_flags & SHF_TLS ? tls_provider : regular_provider;
1972 header.sh_flags, // Flags for this section.
1976 section_sp->SetIsThreadSpecific(header.sh_flags & SHF_TLS);
3424 s->Printf(" %8.8" PRIx64 " (", sh.sh_flags);
3425 DumpELFSectionHeader_sh_flags(s, sh.sh_flags);
3463 // Dump an token value for the ELF section header member sh_flags
3465 elf_xword sh_flags) {
3466 *s << ((sh_flags & SHF_WRITE) ? "WRITE" : " ")
3467 << (((sh_flags & SHF_WRITE) && (sh_flags & SHF_ALLOC)) ? '+' : ' ')
3468 << ((sh_flags & SHF_ALLOC) ? "ALLOC" : " ")
3469 << (((sh_flags & SHF_ALLOC) && (sh_flags & SHF_EXECINSTR)) ? '+' : ' ')
3470 << ((sh_flags & SHF_EXECINSTR) ? "EXECINSTR" : " ");