Lines Matching refs:Communication
37 ConstString &Communication::GetStaticBroadcasterClass() { in GetStaticBroadcasterClass()
42 Communication::Communication(const char *name) in Communication() function in Communication
50 LLDB_LOG(GetLog(LLDBLog::Object | LLDBLog::Communication), in Communication()
63 Communication::~Communication() { in ~Communication()
64 LLDB_LOG(GetLog(LLDBLog::Object | LLDBLog::Communication), in ~Communication()
70 void Communication::Clear() { in Clear()
76 ConnectionStatus Communication::Connect(const char *url, Status *error_ptr) { in Connect()
79 LLDB_LOG(GetLog(LLDBLog::Communication), in Connect()
90 ConnectionStatus Communication::Disconnect(Status *error_ptr) { in Disconnect()
91 LLDB_LOG(GetLog(LLDBLog::Communication), "{0} Communication::Disconnect ()", in Disconnect()
114 bool Communication::IsConnected() const { in IsConnected()
119 bool Communication::HasConnection() const { in HasConnection()
123 size_t Communication::Read(void *dst, size_t dst_len, in Read()
126 Log *log = GetLog(LLDBLog::Communication); in Read()
171 size_t Communication::Write(const void *src, size_t src_len, in Write()
176 LLDB_LOG(GetLog(LLDBLog::Communication), in Write()
190 size_t Communication::WriteAll(const void *src, size_t src_len, in WriteAll()
200 bool Communication::StartReadThread(Status *error_ptr) { in StartReadThread()
207 LLDB_LOG(GetLog(LLDBLog::Communication), in StartReadThread()
234 bool Communication::StopReadThread(Status *error_ptr) { in StopReadThread()
238 LLDB_LOG(GetLog(LLDBLog::Communication), in StopReadThread()
251 bool Communication::JoinReadThread(Status *error_ptr) { in JoinReadThread()
259 size_t Communication::GetCachedBytes(void *dst, size_t dst_len) { in GetCachedBytes()
277 void Communication::AppendBytesToCache(const uint8_t *bytes, size_t len, in AppendBytesToCache()
280 LLDB_LOG(GetLog(LLDBLog::Communication), in AppendBytesToCache()
298 size_t Communication::ReadFromConnection(void *dst, size_t dst_len, in ReadFromConnection()
312 bool Communication::ReadThreadIsRunning() { return m_read_thread_enabled; } in ReadThreadIsRunning()
314 lldb::thread_result_t Communication::ReadThread() { in ReadThread()
315 Log *log = GetLog(LLDBLog::Communication); in ReadThread()
347 Communication::ConnectionStatusAsString(status)); in ReadThread()
363 Communication::ConnectionStatusAsString(status)); in ReadThread()
367 log = GetLog(LLDBLog::Communication); in ReadThread()
390 void Communication::SetReadThreadBytesReceivedCallback( in SetReadThreadBytesReceivedCallback()
396 void Communication::SynchronizeWithReadThread() { in SynchronizeWithReadThread()
417 void Communication::SetConnection(std::unique_ptr<Connection> connection) { in SetConnection()
424 Communication::ConnectionStatusAsString(lldb::ConnectionStatus status) { in ConnectionStatusAsString()