Lines Matching refs:sent
139 size_t sent = 0; in writeFully() local
143 while (sent < size) { in writeFully()
144 size_t remaining = size - sent; in writeFully()
151 buf + sent, sendThisTime, 1); in writeFully()
161 sent += sentChunks * sendThisTime; in writeFully()
252 size_t sent = 0; in type1WriteWithNotify() local
262 while (sent < sizeForRing) { in type1WriteWithNotify()
265 mContext.to_host, writeBufferBytes + sent, sizeForRing - sent, 1); in type1WriteWithNotify()
275 sent += sentChunks * (sizeForRing - sent); in type1WriteWithNotify()
633 size_t sent = 0; in runRoundTrips() local
634 while (sent < trip.writeBytes) { in runRoundTrips()
635 size_t remaining = trip.writeBytes - sent; in runRoundTrips()
638 memcpy(buf, send.data() + sent, next); in runRoundTrips()
639 sent += next; in runRoundTrips()