Lines Matching defs:bytes_written
97 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr);
98 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch);
99 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written);
100 return bytes_written;
107 const size_t bytes_written = WriteAll(&ch, 1, status, nullptr);
108 LLDB_LOGF(log, "<%4" PRIu64 "> send packet: %c", (uint64_t)bytes_written, ch);
109 m_history.AddPacket(ch, GDBRemotePacket::ePacketTypeSend, bytes_written);
110 return bytes_written;
156 size_t bytes_written = WriteAll(packet_data, packet_length, status, nullptr);
179 strm.Printf("<%4" PRIu64 "> send packet: %.*s", (uint64_t)bytes_written,
191 (uint64_t)bytes_written, (int)packet_length, packet_data);
195 GDBRemotePacket::ePacketTypeSend, bytes_written);
197 if (bytes_written == packet_length) {