Lines Matching refs:bytes_written
96 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr); in SendAck() local
97 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch); in SendAck()
98 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendAck()
99 return bytes_written; in SendAck()
106 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr); in SendNack() local
107 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch); in SendNack()
108 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written); in SendNack()
109 return bytes_written; in SendNack()
155 size_t bytes_written = WriteAll(packet_data, packet_length, status, nullptr); in SendRawPacketNoLock() local
178 strm.Printf("<%4" PRIu64 "> send packet: %.*s", (uint64_t)bytes_written, in SendRawPacketNoLock()
190 (uint64_t)bytes_written, (int)packet_length, packet_data); in SendRawPacketNoLock()
194 GDBRemotePacket::ePacketTypeSend, bytes_written); in SendRawPacketNoLock()
196 if (bytes_written == packet_length) { in SendRawPacketNoLock()