HomeSort by: relevance | last modified time | path
    Searched refs:Streams (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
StreamUtil.cpp 67 SmallVectorImpl<StreamInfo> &Streams) {
68 // It's OK if we fail to load some of these streams, we still attempt to print
97 Streams.resize(StreamCount);
100 Streams[StreamIdx] =
103 Streams[StreamIdx] = stream(StreamPurpose::PDB, "PDB Stream", StreamIdx);
105 Streams[StreamIdx] = stream(StreamPurpose::DBI, "DBI Stream", StreamIdx);
107 Streams[StreamIdx] = stream(StreamPurpose::TPI, "TPI Stream", StreamIdx);
109 Streams[StreamIdx] = stream(StreamPurpose::IPI, "IPI Stream", StreamIdx);
111 Streams[StreamIdx] =
114 Streams[StreamIdx]
    [all...]
StreamUtil.h 59 SmallVectorImpl<StreamInfo> &Streams);
ExplainOutputStyle.cpp 243 SmallVector<StreamInfo, 12> Streams;
244 discoverStreamPurposes(File.pdb(), Streams);
246 assert(Stream <= Streams.size());
247 const StreamInfo &S = Streams[Stream];
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Minidump.h 35 /// Returns the list of streams (stream directory entries) in this file.
36 ArrayRef<minidump::Directory> streams() const { return Streams; } function in class:llvm::object::MinidumpFile
165 ArrayRef<minidump::Directory> Streams,
167 : Binary(ID_Minidump, Source), Header(Header), Streams(Streams),
185 ArrayRef<minidump::Directory> Streams;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
MinidumpYAML.h 20 /// The base class for all minidump streams. The "Type" of the stream
22 /// specifies how are we going to treat it. For highly specialized streams (e.g.
45 /// Get the stream Kind used for representing streams of a given Type.
60 /// streams with a similar structure.
198 /// minidump header, and zero or more streams. To construct an Object from a
209 std::vector<std::unique_ptr<Stream>> Streams)
210 : Header(Header), Streams(std::move(Streams)) {}
215 /// The list of streams in this minidump object.
216 std::vector<std::unique_ptr<Stream>> Streams;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Minidump.cpp 21 return getRawStream(Streams[It->second]);
139 // Ignore dummy streams. This is technically ill-formed, but a number of
140 // existing minidumps seem to contain such streams.
146 return createError("Cannot handle one of the minidump streams");
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MinidumpEmitter.cpp 234 std::vector<Directory> StreamDirectory(Obj.Streams.size());
239 for (auto &Stream : enumerate(Obj.Streams))
MinidumpYAML.cpp 459 IO.mapRequired("Streams", O.Streams);
554 std::vector<std::unique_ptr<Stream>> Streams;
555 Streams.reserve(File.streams().size());
556 for (const Directory &StreamDesc : File.streams()) {
560 Streams.push_back(std::move(*ExpectedStream));
562 return Object(File.header(), std::move(Streams));

Completed in 79 milliseconds