Home
last modified time | relevance | path

Searched refs:sendall (Results 1 – 25 of 38) sorted by relevance

12

/third_party/python/Lib/
Dftplib.py202 self.sock.sendall(line.encode(self.encoding))
272 self.sock.sendall(line, MSG_OOB)
503 conn.sendall(buf)
534 conn.sendall(buf)
802 self.sock.sendall(line)
Dtelnetlib.py292 self.sock.sendall(buffer)
481 self.sock.sendall(IAC + WONT + opt)
488 self.sock.sendall(IAC + DONT + opt)
Dpoplib.py117 self.sock.sendall(line + CRLF)
Dsocketserver.py826 self._sock.sendall(b)
Dssl.py1225 def sendall(self, data, flags=0): member in SSLSocket
1239 return super().sendall(data, flags)
Dsmtplib.py360 self.sock.sendall(s)
/third_party/mesa3d/.gitlab-ci/bare-metal/
Deth008-power-relay.py21 c.sendall(msg)
/third_party/python/Lib/asyncio/
Dtrsock.py149 def sendall(self, *args, **kwargs): member in TransportSocket
151 return self._sock.sendall(*args, **kwargs)
/third_party/python/Lib/test/test_asyncio/
Dtest_sslproto.py232 sock.sendall(b'O')
295 sock.sendall(b'O')
363 sock.sendall(b'O')
367 sock.sendall(b'2')
517 sock.sendall(HELLO_MSG)
726 sock.sendall(b'A\n')
/third_party/ltp/testcases/network/lib6/
Dasapi_03.c195 static ssize_t sendall(int st) in sendall() function
290 if (sendall(st) < 0) in so_test()
/third_party/python/Lib/test/
Dtest_epoll.py186 client.sendall(b"Hello!")
187 server.sendall(b"world!!!")
Dmock_socket.py94 def sendall(self, data, flags=None): member in MockSocket
Dtest_socketserver.py163 s.sendall(TEST_STR)
445 s.sendall(b'client response\n')
Dtest_nntplib.py1606 client.sendall(b'200 Server ready\r\n')
1610 client.sendall(
1618 client.sendall(b'382 Begin TLS negotiation now\r\n')
1626 client.sendall(b'205 Bye!\r\n')
Dtest_socket.py1606 c.sendall(b"x" * support.SOCK_MAX_SIZE)
1610 self.assertRaises(TimeoutError, c.sendall,
2474 self.serv_conn.sendall(big_chunk)
4762 self.cli.sendall(MSG)
5679 self.assertRaises(OSError, sock.sendall, b'foo')
5686 conn.sendall(data)
5692 sock.sendall(b'foo')
5700 conn.sendall(data)
5707 self.assertRaises(OSError, sock.sendall, b'foo')
5854 s2.sendall(message)
[all …]
Dtest_httplib.py64 def sendall(self, data): member in FakeSocket
92 def sendall(self, data): member in EPipeSocket
1206 conn.sendall(b"HTTP/1.1 200 Connection established\r\n\r\n")
1220 s.sendall(b"proxied data\n")
D_test_eintr.py281 self._test_send(socket.socket.sendall)
Dtest_telnetlib.py96 def sendall(self, data): member in SocketStub
/third_party/mesa3d/.gitlab-ci/
Dreport-flakes.py41 self.s.sendall((line + '\n').encode())
/third_party/python/Doc/library/
Dsocketserver.rst469 self.request.sendall(self.data.upper())
498 from the client in one ``sendall()`` call.
513 sock.sendall(bytes(data + "\n", "utf-8"))
613 self.request.sendall(response)
621 sock.sendall(bytes(message, 'ascii'))
Dsocket.rst1589 .. method:: socket.sendall(bytes[, flags])
1868 note that the server does not :meth:`~socket.sendall`/:meth:`~socket.recv` on
1888 conn.sendall(data)
1899 s.sendall(b'Hello, world')
1971 s.sendall(b'Hello, world')
/third_party/python/Lib/http/
Dclient.py994 self.sock.sendall(datablock)
998 self.sock.sendall(data)
1002 self.sock.sendall(d)
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/
Dstream.py561 self._sock.sendall(data)
/third_party/python/Lib/logging/
Dhandlers.py622 self.sock.sendall(s)
991 self.socket.sendall(msg)
/third_party/python/Misc/NEWS.d/
D3.5.0a4.rst327 :meth:`socket.socket.sendall` does no more reset the socket timeout each

12