reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 3157   *s << ((sh_flags & SHF_WRITE) ? "WRITE" : "     ")
 3158      << (((sh_flags & SHF_WRITE) && (sh_flags & SHF_ALLOC)) ? '+' : ' ')
 3158      << (((sh_flags & SHF_WRITE) && (sh_flags & SHF_ALLOC)) ? '+' : ' ')
 3159      << ((sh_flags & SHF_ALLOC) ? "ALLOC" : "     ")
 3160      << (((sh_flags & SHF_ALLOC) && (sh_flags & SHF_EXECINSTR)) ? '+' : ' ')
 3160      << (((sh_flags & SHF_ALLOC) && (sh_flags & SHF_EXECINSTR)) ? '+' : ' ')
 3161      << ((sh_flags & SHF_EXECINSTR) ? "EXECINSTR" : "         ");