Lines Matching refs:total_sent
857 total_sent = 0
861 blocksize = min(count - total_sent, blocksize)
869 total_sent += read
870 return total_sent
872 if total_sent > 0 and hasattr(file, 'seek'):
873 file.seek(offset + total_sent)
1139 total_sent = 0
1144 blocksize = min(count - total_sent, blocksize)
1146 return total_sent
1150 return total_sent # EOF
1153 total_sent += read
1155 if total_sent > 0 and hasattr(file, 'seek'):
1156 file.seek(offset + total_sent)