Searched refs:BinaryStream (Results 1 – 16 of 16) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | BinaryStream.h | 1 //===- 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 D | BinaryStreamRef.h | 155 : 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 D | BinaryItemStream.h | 13 #include "llvm/Support/BinaryStream.h" 34 class BinaryItemStream : public BinaryStream {
|
| H A D | BinaryStreamReader.h | 34 LLVM_ABI explicit BinaryStreamReader(BinaryStream &Stream);
|
| H A D | BinaryByteStream.h | 7 // 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 D | DbiStream.h | 24 class BinaryStream; variable 44 LLVM_ABI explicit DbiStream(std::unique_ptr<BinaryStream> Stream); 108 std::unique_ptr<BinaryStream> Stream;
|
| H A D | InfoStream.h | 29 LLVM_ABI InfoStream(std::unique_ptr<BinaryStream> Stream); 55 std::unique_ptr<BinaryStream> Stream;
|
| H A D | PDBFile.h | 24 class BinaryStream; variable 45 PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, 127 std::unique_ptr<BinaryStream> Buffer;
|
| H A D | TpiStream.h | 22 class BinaryStream; variable 90 std::unique_ptr<BinaryStream> HashStream;
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | BinaryStreamRef.cpp | 16 class ArrayRefImpl : public BinaryStream { 62 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream) 64 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream, uint64_t Offset,
|
| H A D | BinaryStreamReader.cpp | 19 BinaryStreamReader::BinaryStreamReader(BinaryStream &Stream) : Stream(Stream) {}
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | InfoStream.cpp | 20 InfoStream::InfoStream(std::unique_ptr<BinaryStream> Stream) in InfoStream()
|
| H A D | NativeEnumInjectedSources.cpp | 22 Expected<std::string> readStreamData(BinaryStream &Stream, uint64_t Limit) { in readStreamData()
|
| H A D | DbiStream.cpp | 45 DbiStream::DbiStream(std::unique_ptr<BinaryStream> Stream) in DbiStream()
|
| H A D | PDBFile.cpp | 41 PDBFile::PDBFile(StringRef Path, std::unique_ptr<BinaryStream> PdbFileBuffer, in PDBFile()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MappedBlockStream.h | 38 class LLVM_ABI MappedBlockStream : public BinaryStream {
|