Lines Matching refs:total_sent
374 total_sent = 0
383 blocksize = count - total_sent
395 if total_sent == 0:
406 total_sent += sent
407 return total_sent
409 if total_sent > 0 and hasattr(file, 'seek'):
423 total_sent = 0
430 blocksize = min(count - total_sent, blocksize)
442 total_sent += sent
447 return total_sent
449 if total_sent > 0 and hasattr(file, 'seek'):
450 file.seek(offset + total_sent)