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

References

lib/ObjectYAML/ELFEmitter.cpp
  537   if (RawSec && !Symbols.empty() && (RawSec->Content || RawSec->Size)) {
  538     if (RawSec->Content)
  590   if (RawSec && (RawSec->Content || RawSec->Size)) {
  592     SHeader.sh_size = writeContent(OS, RawSec->Content, RawSec->Size);
  616   if (RawSec && (RawSec->Content || RawSec->Size)) {
  617     SHeader.sh_size = writeContent(OS, RawSec->Content, RawSec->Size);
  713   SHeader.sh_size = writeContent(OS, Section.Content, Section.Size);
lib/ObjectYAML/ELFYAML.cpp
 1015   IO.mapOptional("Content", Section.Content);
 1211     if (RawSection->Size && RawSection->Content &&
 1212         (uint64_t)(*RawSection->Size) < RawSection->Content->binary_size())
tools/obj2yaml/elf2yaml.cpp
  652       S->Content = yaml::BinaryRef(Content);