Lines Matching refs:bytes_written
105 const size_t bytes_written = Write(&ch, 1, status, nullptr); in SendAck() local
106 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch); in SendAck()
107 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendAck()
108 return bytes_written; in SendAck()
115 const size_t bytes_written = Write(&ch, 1, status, nullptr); in SendNack() local
116 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch); in SendNack()
117 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendNack()
118 return bytes_written; in SendNack()
141 size_t bytes_written = Write(packet_data, packet_length, status, nullptr); in SendRawPacketNoLock() local
164 strm.Printf("<%4" PRIu64 "> send packet: %.*s", (uint64_t)bytes_written, in SendRawPacketNoLock()
176 (uint64_t)bytes_written, (int)packet_length, packet_data); in SendRawPacketNoLock()
180 GDBRemotePacket::ePacketTypeSend, bytes_written); in SendRawPacketNoLock()
182 if (bytes_written == packet_length) { in SendRawPacketNoLock()