Home
last modified time | relevance | path

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

12

/third_party/curl/tests/
Ddictserver.py85 self.request.sendall(rsp.encode("utf-8"))
106 self.request.sendall(response.encode("utf-8"))
Dnegtelnetserver.py108 self.request.sendall(response_data)
219 self.tcp.sendall(bytearray(message_ints))
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_tcp_proxy.py101 self._proxy_socket.sendall(self._southbound_data)
105 socket_to_write.sendall(self._northbound_data)
/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/
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.py799 self._sock.sendall(b)
Dssl.py1193 def sendall(self, data, flags=0): member in SSLSocket
1207 return super().sendall(data, flags)
Dsmtplib.py358 self.sock.sendall(s)
/third_party/python/Lib/test/test_asyncio/
Dtest_sslproto.py232 sock.sendall(b'O')
294 sock.sendall(b'O')
361 sock.sendall(b'O')
365 sock.sendall(b'2')
515 sock.sendall(HELLO_MSG)
727 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.py161 s.sendall(TEST_STR)
433 s.sendall(b'client response\n')
Dtest_nntplib.py1592 client.sendall(b'200 Server ready\r\n')
1596 client.sendall(
1604 client.sendall(b'382 Begin TLS negotiation now\r\n')
1612 client.sendall(b'205 Bye!\r\n')
Dtest_socket.py1610 c.sendall(b"x" * support.SOCK_MAX_SIZE)
1614 self.assertRaises(socket.timeout, c.sendall,
2476 self.serv_conn.sendall(big_chunk)
4764 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.py60 def sendall(self, data): member in FakeSocket
88 def sendall(self, data): member in EPipeSocket
1175 conn.sendall(b"HTTP/1.1 200 Connection established\r\n\r\n")
1189 s.sendall(b"proxied data\n")
Dtest_telnetlib.py96 def sendall(self, data): member in SocketStub
/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.rst1549 .. method:: socket.sendall(bytes[, flags])
1851 note that the server does not :meth:`~socket.sendall`/:meth:`~socket.recv` on
1871 conn.sendall(data)
1882 s.sendall(b'Hello, world')
1954 s.sendall(b'Hello, world')
/third_party/python/Lib/http/
Dclient.py972 self.sock.sendall(datablock)
975 self.sock.sendall(data)
979 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.py592 self.sock.sendall(s)
961 self.socket.sendall(msg)
/third_party/python/Lib/test/eintrdata/
Deintr_tester.py280 self._test_send(socket.socket.sendall)

12