Lines Matching refs:total_sent
342 offset, count, blocksize, total_sent): argument
351 self._sock_sendfile_update_filepos(fileno, offset, total_sent)
354 blocksize = count - total_sent
356 self._sock_sendfile_update_filepos(fileno, offset, total_sent)
357 fut.set_result(total_sent)
367 offset, count, blocksize, total_sent)
380 if total_sent == 0:
387 self._sock_sendfile_update_filepos(fileno, offset, total_sent)
390 self._sock_sendfile_update_filepos(fileno, offset, total_sent)
393 self._sock_sendfile_update_filepos(fileno, offset, total_sent)
398 self._sock_sendfile_update_filepos(fileno, offset, total_sent)
399 fut.set_result(total_sent)
402 total_sent += sent
407 offset, count, blocksize, total_sent)
409 def _sock_sendfile_update_filepos(self, fileno, offset, total_sent): argument
410 if total_sent > 0: