Lines Matching refs:total_sent
824 total_sent = 0
828 blocksize = min(count - total_sent, blocksize)
836 total_sent += read
837 return total_sent
839 if total_sent > 0 and hasattr(file, 'seek'):
840 file.seek(offset + total_sent)
1077 total_sent = 0
1082 blocksize = min(count - total_sent, blocksize)
1084 return total_sent
1088 return total_sent # EOF
1091 total_sent += read
1093 if total_sent > 0 and hasattr(file, 'seek'):
1094 file.seek(offset + total_sent)