Home | History | Annotate | Download | only in CodeView

Lines Matching full:bytestream

1 //===- ByteStream.cpp - Reads stream data from a byte sequence ------------===//
10 #include "llvm/DebugInfo/CodeView/ByteStream.h"
21 "ByteStream is immutable.");
36 Error ByteStream<Writable>::readBytes(uint32_t Offset, uint32_t Size,
47 Error ByteStream<Writable>::readLongestContiguousChunk(
56 Error ByteStream<Writable>::writeBytes(uint32_t Offset,
61 template <bool Writable> uint32_t ByteStream<Writable>::getLength() const {
65 template <bool Writable> Error ByteStream<Writable>::commit() const {
69 template <bool Writable> StringRef ByteStream<Writable>::str() const {
76 template class ByteStream<true>;
77 template class ByteStream<false>;