LLDB mainline
Public Member Functions | List of all members
lldb_private::StreamGDBRemote Class Reference

#include <GDBRemote.h>

Inheritance diagram for lldb_private::StreamGDBRemote:
Inheritance graph
[legend]

Public Member Functions

 StreamGDBRemote ()
 
 StreamGDBRemote (uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order)
 
 ~StreamGDBRemote () override
 
int PutEscapedBytes (const void *s, size_t src_len)
 Output a block of data to the stream performing GDB-remote escaping.
 
- Public Member Functions inherited from lldb_private::StreamString
 StreamString (bool colors=false)
 
 StreamString (uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order)
 
 ~StreamString () override
 
void Flush () override
 Flush the stream.
 
void Clear ()
 
bool Empty () const
 
size_t GetSize () const
 
size_t GetSizeOfLastLine () const
 
llvm::StringRef GetString () const
 
const char * GetData () const
 
void FillLastLineToColumn (uint32_t column, char fill_char)
 
- Public Member Functions inherited from lldb_private::Stream
 Stream (uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order, bool colors=false)
 Construct with flags and address size and byte order.
 
 Stream (bool colors=false)
 Construct a default Stream, not binary, host byte order and host addr size.
 
 Stream (const Stream &other)
 
Streamoperator= (const Stream &rhs)
 
virtual ~Stream ()
 Destructor.
 
virtual void Flush ()=0
 Flush the stream.
 
size_t Write (const void *src, size_t src_len)
 Output character bytes to the stream.
 
size_t GetWrittenBytes () const
 
size_t PutChar (char ch)
 
lldb::ByteOrder SetByteOrder (lldb::ByteOrder byte_order)
 Set the byte_order value.
 
size_t PrintfAsRawHex8 (const char *format,...) __attribute__((__format__(__printf__
 Format a C string from a printf style format and variable arguments and encode and append the resulting C string as hex bytes.
 
size_t size_t PutHex8 (uint8_t uvalue)
 Append an uint8_t value in the hexadecimal format to the stream.
 
size_t PutNHex8 (size_t n, uint8_t uvalue)
 
size_t PutHex16 (uint16_t uvalue, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutHex32 (uint32_t uvalue, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutHex64 (uint64_t uvalue, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutMaxHex64 (uint64_t uvalue, size_t byte_size, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutFloat (float f, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutDouble (double d, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutLongDouble (long double ld, lldb::ByteOrder byte_order=lldb::eByteOrderInvalid)
 
size_t PutPointer (void *ptr)
 
size_t PutBytesAsRawHex8 (const void *src, size_t src_len, lldb::ByteOrder src_byte_order=lldb::eByteOrderInvalid, lldb::ByteOrder dst_byte_order=lldb::eByteOrderInvalid)
 
size_t PutRawBytes (const void *s, size_t src_len, lldb::ByteOrder src_byte_order=lldb::eByteOrderInvalid, lldb::ByteOrder dst_byte_order=lldb::eByteOrderInvalid)
 
size_t PutStringAsRawHex8 (llvm::StringRef s)
 
Streamoperator<< (const char *cstr)
 Output a NULL terminated C string cstr to the stream s.
 
Streamoperator<< (llvm::StringRef str)
 
Streamoperator<< (const void *p)
 Output a pointer value p to the stream s.
 
Streamoperator<< (char ch)
 Output a character ch to the stream s.
 
Streamoperator<< (uint8_t uval)=delete
 
Streamoperator<< (uint16_t uval)=delete
 
Streamoperator<< (uint32_t uval)=delete
 
Streamoperator<< (uint64_t uval)=delete
 
Streamoperator<< (int8_t sval)=delete
 
Streamoperator<< (int16_t sval)=delete
 
Streamoperator<< (int32_t sval)=delete
 
Streamoperator<< (int64_t sval)=delete
 
size_t PutCString (llvm::StringRef cstr)
 Output a C string to the stream.
 
void PutCStringColorHighlighted (llvm::StringRef text, std::optional< HighlightSettings > settings=std::nullopt)
 Output a C string to the stream with color highlighting.
 
size_t EOL ()
 Output and End of Line character to the stream.
 
uint32_t GetAddressByteSize () const
 Get the address size in bytes.
 
FlagsGetFlags ()
 The flags accessor.
 
const FlagsGetFlags () const
 The flags const accessor.
 
lldb::ByteOrder GetByteOrder () const
 
unsigned GetIndentLevel () const
 Get the current indentation level.
 
size_t Indent (llvm::StringRef s="")
 Indent the current line in the stream.
 
void IndentLess (unsigned amount=2)
 Decrement the current indentation level.
 
void IndentMore (unsigned amount=2)
 Increment the current indentation level.
 
void Offset (uint32_t offset, const char *format="0x%8.8x: ")
 Output an offset value.
 
size_t Printf (const char *format,...) __attribute__((format(printf
 Output printf formatted output to the stream.
 
size_t size_t PrintfVarArg (const char *format, va_list args)
 
template<typename... Args>
void Format (const char *format, Args &&... args)
 
void QuotedCString (const char *cstr, const char *format="\"%s\"")
 Output a quoted C string value to the stream.
 
void SetAddressByteSize (uint32_t addr_size)
 Set the address size in bytes.
 
void SetIndentLevel (unsigned level)
 Set the current indentation level.
 
size_t PutSLEB128 (int64_t uval)
 Output a SLEB128 number to the stream.
 
size_t PutULEB128 (uint64_t uval)
 Output a ULEB128 number to the stream.
 
llvm::raw_ostream & AsRawOstream ()
 Returns a raw_ostream that forwards the data to this Stream object.
 

Additional Inherited Members

- Public Types inherited from lldb_private::Stream
enum  { eBinary = (1 << 0) }
 m_flags bit values. More...
 
- Protected Member Functions inherited from lldb_private::StreamString
size_t WriteImpl (const void *s, size_t length) override
 Output character bytes to the stream.
 
- Protected Member Functions inherited from lldb_private::Stream
void _PutHex8 (uint8_t uvalue, bool add_prefix)
 
virtual size_t WriteImpl (const void *src, size_t src_len)=0
 Output character bytes to the stream.
 
- Protected Attributes inherited from lldb_private::StreamString
std::string m_packet
 
- Protected Attributes inherited from lldb_private::Stream
Flags m_flags
 Dump flags.
 
uint32_t m_addr_size = 4
 Size of an address in bytes.
 
lldb::ByteOrder m_byte_order
 Byte order to use when encoding scalar types.
 
unsigned m_indent_level = 0
 Indention level.
 
std::size_t m_bytes_written = 0
 Number of bytes written so far.
 
RawOstreamForward m_forwarder
 

Detailed Description

Definition at line 25 of file GDBRemote.h.

Constructor & Destructor Documentation

◆ StreamGDBRemote() [1/2]

StreamGDBRemote::StreamGDBRemote ( )

Definition at line 20 of file GDBRemote.cpp.

◆ StreamGDBRemote() [2/2]

StreamGDBRemote::StreamGDBRemote ( uint32_t  flags,
uint32_t  addr_size,
lldb::ByteOrder  byte_order 
)

Definition at line 22 of file GDBRemote.cpp.

◆ ~StreamGDBRemote()

StreamGDBRemote::~StreamGDBRemote ( )
overridedefault

Member Function Documentation

◆ PutEscapedBytes()

int StreamGDBRemote::PutEscapedBytes ( const void *  s,
size_t  src_len 
)

Output a block of data to the stream performing GDB-remote escaping.

Parameters
[in]sA block of data.
[in]src_lenThe amount of data to write.
Returns
Number of bytes written.

Definition at line 28 of file GDBRemote.cpp.

References lldb_private::Flags::Clear(), lldb_private::Stream::eBinary, lldb_private::Stream::m_flags, lldb_private::Stream::PutChar(), lldb_private::Flags::Set(), and lldb_private::Flags::Test().

Referenced by lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::ConfigureRemoteStructuredData(), lldb_private::process_gdb_remote::ProcessGDBRemote::DoWriteMemory(), lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::GetModulesInfo(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerLLGS::Handle_jLLDBTraceGetBinaryData(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerCommon::Handle_jModulesInfo(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerLLGS::Handle_jThreadsInfo(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerLLGS::Handle_memory_read(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerCommon::Handle_qPlatform_shell(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerPlatform::Handle_qQueryGDBServer(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerLLGS::Handle_qXfer(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerCommon::Handle_vFile_FStat(), lldb_private::process_gdb_remote::GDBRemoteCommunicationServerCommon::Handle_vFile_pRead(), lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::SendTraceGetBinaryData(), lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::SendTraceGetState(), lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::SendTraceStart(), lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::SendTraceStop(), and lldb_private::process_gdb_remote::GDBRemoteCommunicationClient::WriteFile().


The documentation for this class was generated from the following files: