Lines Matching refs:sent
2994 # when the number that can be sent is limited.
3228 # Test receiving with recvmsg[_into]() when message is sent
4819 # the server sent data yet: non-blocking recv() doesn't block
6109 sent = meth(file)
6110 self.assertEqual(sent, self.FILESIZE)
6125 sent = sock.sendfile(file)
6126 self.assertEqual(sent, self.FILESIZE)
6147 sent = meth(file)
6148 self.assertEqual(sent, 0)
6163 sent = meth(file, offset=5000)
6164 self.assertEqual(sent, self.FILESIZE - 5000)
6183 sent = meth(file, count=count)
6184 self.assertEqual(sent, count)
6204 sent = meth(file, count=count)
6205 self.assertEqual(sent, count)
6223 sent = meth(file, offset=2007, count=count)
6224 self.assertEqual(sent, count)
6259 sent = meth(file)
6260 self.assertEqual(sent, self.FILESIZE)