Lines Matching refs:total_sent
292 total_sent = 0
301 blocksize = count - total_sent
313 if total_sent == 0:
324 total_sent += sent
325 return total_sent
327 if total_sent > 0 and hasattr(file, 'seek'):
341 total_sent = 0
348 blocksize = min(count - total_sent, blocksize)
360 total_sent += sent
365 return total_sent
367 if total_sent > 0 and hasattr(file, 'seek'):
368 file.seek(offset + total_sent)