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

References

tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
  231   if (!GetMaxU64(data, offset, &sh_flags, byte_size))
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 1607     if (H.sh_flags & SHF_EXECINSTR)
 1637   if (H.sh_flags & SHF_ALLOC)
 1639   if (H.sh_flags & SHF_WRITE)
 1641   if (H.sh_flags & SHF_EXECINSTR)
 1684     addr_t Size = H.sh_flags & SHF_ALLOC ? H.sh_size : 0;
 1685     if (ObjectType == ObjectFile::Type::eTypeObjectFile && Segments.empty() && (H.sh_flags & SHF_ALLOC)) {
 1721     if ((H.sh_flags & SHF_ALLOC) && It.valid()) {
 1805         header.sh_flags & SHF_TLS ? tls_provider : regular_provider;
 1830         header.sh_flags,     // Flags for this section.
 1834     section_sp->SetIsThreadSpecific(header.sh_flags & SHF_TLS);
 3115   s->Printf(" %8.8" PRIx64 " (", sh.sh_flags);
 3116   DumpELFSectionHeader_sh_flags(s, sh.sh_flags);