Lines Matching refs:Content

547         RawSec->Content.reset();  in dumpDWARFSections()
852 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpStackSizesSection() local
853 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpStackSizesSection()
857 while (Cur && Cur.tell() < Content.size()) { in dumpStackSizesSection()
863 if (Content.empty() || !Cur) { in dumpStackSizesSection()
866 S->Content = yaml::BinaryRef(Content); in dumpStackSizesSection()
885 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpBBAddrMapSection() local
886 if (Content.empty()) in dumpBBAddrMapSection()
889 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpBBAddrMapSection()
895 while (Cur && Cur.tell() < Content.size()) { in dumpBBAddrMapSection()
922 S->Content = yaml::BinaryRef(Content); in dumpBBAddrMapSection()
941 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpAddrsigSection() local
943 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpAddrsigSection()
945 while (Cur && Cur.tell() < Content.size()) { in dumpAddrsigSection()
967 S->Content = yaml::BinaryRef(Content); in dumpAddrsigSection()
982 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpLinkerOptionsSection() local
983 if (Content.empty() || Content.back() != 0) { in dumpLinkerOptionsSection()
984 S->Content = Content; in dumpLinkerOptionsSection()
989 toStringRef(Content.drop_back()).split(Strings, '\0'); in dumpLinkerOptionsSection()
991 S->Content = Content; in dumpLinkerOptionsSection()
1013 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpDependentLibrariesSection() local
1014 if (!Content.empty() && Content.back() != 0) { in dumpDependentLibrariesSection()
1015 DL->Content = Content; in dumpDependentLibrariesSection()
1020 for (const uint8_t *I = Content.begin(), *E = Content.end(); I < E;) { in dumpDependentLibrariesSection()
1039 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpCallGraphProfileSection() local
1045 if (Content.empty() || Content.size() % SizeOfEntry != 0) { in dumpCallGraphProfileSection()
1046 if (!Content.empty()) in dumpCallGraphProfileSection()
1047 S->Content = yaml::BinaryRef(Content); in dumpCallGraphProfileSection()
1051 std::vector<ELFYAML::CallGraphEntryWeight> Entries(Content.size() / in dumpCallGraphProfileSection()
1053 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpCallGraphProfileSection()
1067 S->Content = yaml::BinaryRef(Content); in dumpCallGraphProfileSection()
1153 S->Content = *ContentOrErr; in dumpRelrSection()
1169 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpContentSection() local
1170 if (!Content.empty()) in dumpContentSection()
1171 S->Content = yaml::BinaryRef(Content); in dumpContentSection()
1221 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpNoteSection() local
1222 while (!Content.empty()) { in dumpNoteSection()
1223 if (Content.size() < sizeof(Elf_Nhdr)) { in dumpNoteSection()
1224 S->Content = yaml::BinaryRef(*ContentOrErr); in dumpNoteSection()
1228 const Elf_Nhdr *Header = reinterpret_cast<const Elf_Nhdr *>(Content.data()); in dumpNoteSection()
1229 if (Content.size() < Header->getSize()) { in dumpNoteSection()
1230 S->Content = yaml::BinaryRef(*ContentOrErr); in dumpNoteSection()
1238 Content = Content.drop_front(Header->getSize()); in dumpNoteSection()
1256 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpHashSection() local
1257 if (Content.size() % 4 != 0 || Content.size() < 8) { in dumpHashSection()
1258 S->Content = yaml::BinaryRef(Content); in dumpHashSection()
1263 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpHashSection()
1266 if (Content.size() != (2 + NBucket + NChain) * 4) { in dumpHashSection()
1267 S->Content = yaml::BinaryRef(Content); in dumpHashSection()
1298 ArrayRef<uint8_t> Content = *ContentOrErr; in dumpGnuHashSection() local
1299 DataExtractor Data(Content, Obj.isLE(), AddrSize); in dumpGnuHashSection()
1314 S->Content = yaml::BinaryRef(Content); in dumpGnuHashSection()
1536 S->Content = yaml::BinaryRef(*ContentOrErr); in dumpARMIndexTableSection()