Lines Matching refs:total_sent
372 total_sent = 0
381 blocksize = count - total_sent
393 if total_sent == 0:
404 total_sent += sent
405 return total_sent
407 if total_sent > 0 and hasattr(file, 'seek'):
421 total_sent = 0
428 blocksize = min(count - total_sent, blocksize)
440 total_sent += sent
445 return total_sent
447 if total_sent > 0 and hasattr(file, 'seek'):
448 file.seek(offset + total_sent)