• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/

Lines Matching refs:Stream

66   std::unique_ptr<BinaryByteStream> Stream =
71 DbiStream Dbi(std::move(Stream));
78 InfoStream Info(std::move(Stream));
242 void ExplainOutputStyle::explainPdbStreamOffset(uint32_t Stream) {
246 assert(Stream <= Streams.size());
247 const StreamInfo &S = Streams[Stream];
248 const auto &Layout = File.pdb().getStreamLayout(Stream);
251 P.formatLine("Address is at offset {0}/{1} of Stream {2} ({3}){4}.",
252 StreamOff, Layout.Length, Stream, S.getLongName(),
279 P.formatLine("Address is at offset {0}/{1} of Stream Directory{2}.",
302 printStructField(P, "the DBI Stream Version Signature",
305 printStructField(P, "the DBI Stream Version Header",
308 printStructField(P, "the age of the DBI Stream", uint32_t(Header->Age));
310 printStructField(P, "the index of the Global Symbol Stream",
315 printStructField(P, "the index of the Public Symbol Stream",
321 printStructField(P, "the index of the Symbol Record Stream",
344 printStructField(P, "the size of the Optional Debug Stream array",
350 printStructField(P, "the DBI Stream flags", uint16_t(Header->Flags));
382 static void dontExplain(LinePrinter &Printer, T &Stream, uint32_t Offset) {}
386 T &Stream,
396 Entry.Explain(P, Stream, SubOffset);
415 {sizeof(DbiStreamHeader), "DBI Stream Header", explainDbiHeaderOffset},
427 {int32_t(Header->OptionalDbgHdrSize), "Optional Debug Stream Array",
440 printStructField(P, "the PDB Stream Version Signature",
443 printStructField(P, "the signature of the PDB Stream",
460 } Substreams[] = {{sizeof(InfoStreamHeader), "PDB Stream Header",
462 {Info.getNamedStreamMapByteSize(), "Named Stream Map",