Home
last modified time | relevance | path

Searched refs:BinaryStream (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStream.h1 //===- BinaryStream.h - Base interface for a stream of data -----*- C++ -*-===//
34 class BinaryStream {
36 virtual ~BinaryStream() = default;
67 /// A BinaryStream which can be read from as well as written to. Note
68 /// that writing to a BinaryStream always necessitates copying from the input
72 class WritableBinaryStream : public BinaryStream {
H A DBinaryStreamRef.h155 : public BinaryStreamRefBase<BinaryStreamRef, BinaryStream> {
156 friend BinaryStreamRefBase<BinaryStreamRef, BinaryStream>;
158 BinaryStreamRef(std::shared_ptr<BinaryStream> Impl, uint64_t ViewOffset, in BinaryStreamRef()
164 LLVM_ABI BinaryStreamRef(BinaryStream &Stream);
165 LLVM_ABI BinaryStreamRef(BinaryStream &Stream, uint64_t Offset,
H A DBinaryItemStream.h13 #include "llvm/Support/BinaryStream.h"
34 class BinaryItemStream : public BinaryStream {
H A DBinaryStreamReader.h34 LLVM_ABI explicit BinaryStreamReader(BinaryStream &Stream);
H A DBinaryByteStream.h7 // A BinaryStream which stores data in a single continguous memory buffer.
15 #include "llvm/Support/BinaryStream.h"
26 /// An implementation of BinaryStream which holds its entire data set
30 class BinaryByteStream : public BinaryStream {
70 /// An implementation of BinaryStream whose data is backed by an llvm
84 /// An implementation of BinaryStream which holds its entire data set
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h24 class BinaryStream; variable
44 LLVM_ABI explicit DbiStream(std::unique_ptr<BinaryStream> Stream);
108 std::unique_ptr<BinaryStream> Stream;
H A DInfoStream.h29 LLVM_ABI InfoStream(std::unique_ptr<BinaryStream> Stream);
55 std::unique_ptr<BinaryStream> Stream;
H A DPDBFile.h24 class BinaryStream; variable
45 PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer,
127 std::unique_ptr<BinaryStream> Buffer;
H A DTpiStream.h22 class BinaryStream; variable
90 std::unique_ptr<BinaryStream> HashStream;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamRef.cpp16 class ArrayRefImpl : public BinaryStream {
62 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream)
64 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream, uint64_t Offset,
H A DBinaryStreamReader.cpp19 BinaryStreamReader::BinaryStreamReader(BinaryStream &Stream) : Stream(Stream) {}
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInfoStream.cpp20 InfoStream::InfoStream(std::unique_ptr<BinaryStream> Stream) in InfoStream()
H A DNativeEnumInjectedSources.cpp22 Expected<std::string> readStreamData(BinaryStream &Stream, uint64_t Limit) { in readStreamData()
H A DDbiStream.cpp45 DbiStream::DbiStream(std::unique_ptr<BinaryStream> Stream) in DbiStream()
H A DPDBFile.cpp41 PDBFile::PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, in PDBFile()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h38 class LLVM_ABI MappedBlockStream : public BinaryStream {