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

References

lib/ObjectYAML/ELFEmitter.cpp
  609   SHeader.sh_type = YAMLSec ? YAMLSec->Type : ELF::SHT_STRTAB;
  609   SHeader.sh_type = YAMLSec ? YAMLSec->Type : ELF::SHT_STRTAB;
  610   SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1;
  610   SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1;
  613       dyn_cast_or_null<ELFYAML::RawContentSection>(YAMLSec);
  623   if (YAMLSec && YAMLSec->EntSize)
  623   if (YAMLSec && YAMLSec->EntSize)
  624     SHeader.sh_entsize = *YAMLSec->EntSize;
  629   if (YAMLSec && YAMLSec->Flags)
  629   if (YAMLSec && YAMLSec->Flags)
  630     SHeader.sh_flags = *YAMLSec->Flags;
  636   if (YAMLSec)
  637     SHeader.sh_addr = YAMLSec->Address;