Searched refs:StreamBuffer (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | CVRecord.h | 68 Error forEachCodeViewRecord(ArrayRef<uint8_t> StreamBuffer, Func F) { in forEachCodeViewRecord() argument 69 while (!StreamBuffer.empty()) { in forEachCodeViewRecord() 70 if (StreamBuffer.size() < sizeof(RecordPrefix)) in forEachCodeViewRecord() 74 reinterpret_cast<const RecordPrefix *>(StreamBuffer.data()); in forEachCodeViewRecord() 77 if (StreamBuffer.size() < RealLen) in forEachCodeViewRecord() 80 ArrayRef<uint8_t> Data = StreamBuffer.take_front(RealLen); in forEachCodeViewRecord() 81 StreamBuffer = StreamBuffer.drop_front(RealLen); in forEachCodeViewRecord()
|
| /src/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | StreamBuffer.h | 19 template <unsigned N> class StreamBuffer : public Stream { 21 StreamBuffer() : Stream(0, 4, lldb::eByteOrderBig), m_packet() {} in StreamBuffer() function 23 StreamBuffer(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order) in StreamBuffer() function 26 ~StreamBuffer() override = default;
|
| /src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBLocationToDWARFExpression.cpp | 84 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in ConvertPDBLocationToDWARFExpression()
|
| /src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | DWARFLocationExpression.cpp | 118 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in MakeLocationExpressionInternal()
|
| /src/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 307 template <unsigned N> class StreamBuffer; variable
|
| /src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 852 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in CreateDWARFExpression()
|