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

References

tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 3081   *s << ((p_flags & PF_X) ? "PF_X" : "    ")
 3082      << (((p_flags & PF_X) && (p_flags & PF_W)) ? '+' : ' ')
 3082      << (((p_flags & PF_X) && (p_flags & PF_W)) ? '+' : ' ')
 3083      << ((p_flags & PF_W) ? "PF_W" : "    ")
 3084      << (((p_flags & PF_W) && (p_flags & PF_R)) ? '+' : ' ')
 3084      << (((p_flags & PF_W) && (p_flags & PF_R)) ? '+' : ' ')
 3085      << ((p_flags & PF_R) ? "PF_R" : "    ");