Lines Matching refs:bytes_written
99 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr); in SendAck() local
100 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch); in SendAck()
101 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendAck()
102 return bytes_written; in SendAck()
109 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr); in SendNack() local
110 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch); in SendNack()
111 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendNack()
112 return bytes_written; in SendNack()
158 size_t bytes_written = WriteAll(packet_data, packet_length, status, nullptr); in SendRawPacketNoLock() local
181 strm.Printf("<%4" PRIu64 "> send packet: %.*s", (uint64_t)bytes_written, in SendRawPacketNoLock()
193 (uint64_t)bytes_written, (int)packet_length, packet_data); in SendRawPacketNoLock()
197 GDBRemotePacket::ePacketTypeSend, bytes_written); in SendRawPacketNoLock()
199 if (bytes_written == packet_length) { in SendRawPacketNoLock()