/third_party/node/deps/v8/tools/ |
H A D | adb-d8.py | 51 self.request.sendall(struct.pack("!i", len(contents))) 52 self.request.sendall(contents) 58 self.request.sendall(struct.pack("!i", -1))
|
/third_party/curl/tests/ |
H A D | dictserver.py | 87 self.request.sendall(rsp.encode("utf-8")) 108 self.request.sendall(response.encode("utf-8"))
|
H A D | negtelnetserver.py | 112 self.request.sendall(response_data) 229 self.tcp.sendall(bytearray(message_ints))
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_sslproto.py | 237 sock.sendall(b'O') 300 sock.sendall(b'O') 368 sock.sendall(b'O') 372 sock.sendall(b'2') 522 sock.sendall(HELLO_MSG) 731 sock.sendall(b'A\n')
|
H A D | test_ssl.py | 591 csock.sendall(message) 644 sock.sendall(b'A\n') 692 sock.sendall(b'O') 751 sock.sendall(b'O') 819 sock.sendall(b'O') 823 sock.sendall(b'2') 973 sock.sendall(HELLO_MSG)
|
/third_party/mesa3d/.gitlab-ci/bare-metal/ |
H A D | eth008-power-relay.py | 21 c.sendall(msg)
|
/third_party/python/Lib/ |
H A D | ftplib.py | 202 self.sock.sendall(line.encode(self.encoding)) 272 self.sock.sendall(line, MSG_OOB) 503 conn.sendall(buf) 534 conn.sendall(buf) 800 # overridden as we can't pass MSG_OOB flag to sendall() 802 self.sock.sendall(line)
|
H A D | telnetlib.py | 295 self.sock.sendall(buffer) 484 self.sock.sendall(IAC + WONT + opt) 491 self.sock.sendall(IAC + DONT + opt)
|
H A D | poplib.py | 117 self.sock.sendall(line + CRLF)
|
H A D | socketserver.py | 834 self._sock.sendall(b)
|
H A D | ssl.py | 1259 def sendall(self, data, flags=0): member in SSLSocket 1264 "non-zero flags not allowed in calls to sendall() on %s" % 1273 return super().sendall(data, flags)
|
/third_party/libfuse/test/ |
H A D | test_custom_io.py | 50 sock.sendall(dummy_init_req)
|
/third_party/ltp/testcases/network/lib6/ |
H A D | asapi_03.c | 195 static ssize_t sendall(int st) in sendall() function 290 if (sendall(st) < 0) in so_test()
|
/third_party/python/Lib/test/ |
H A D | test_epoll.py | 186 client.sendall(b"Hello!") 187 server.sendall(b"world!!!")
|
H A D | mock_socket.py | 94 def sendall(self, data, flags=None): member in MockSocket
|
H A D | test_socketserver.py | 165 s.sendall(TEST_STR) 447 s.sendall(b'client response\n')
|
H A D | test_socket.py | 1634 c.sendall(b"x" * support.SOCK_MAX_SIZE) 1638 self.assertRaises(TimeoutError, c.sendall, 2532 # Testing sendall() with a 2048 byte string over TCP 2543 self.serv_conn.sendall(big_chunk) 4688 # internally to a non-blocking mode. Later, sock.sendall(), 4831 self.cli.sendall(MSG) 5785 self.assertRaises(OSError, sock.sendall, b'foo') 5792 conn.sendall(data) 5798 sock.sendall(b'foo') 5806 conn.sendall(dat [all...] |
H A D | test_nntplib.py | 1605 client.sendall(b'200 Server ready\r\n') 1609 client.sendall( 1617 client.sendall(b'382 Begin TLS negotiation now\r\n') 1625 client.sendall(b'205 Bye!\r\n')
|
H A D | _test_eintr.py | 213 ' wr.sendall(data)', 273 # sendall() returns None 281 self._test_send(socket.socket.sendall)
|
H A D | test_telnetlib.py | 94 ''' a socket proxy that re-defines sendall() ''' 99 def sendall(self, data): member in SocketStub
|
H A D | test_httplib.py | 66 def sendall(self, data): member in FakeSocket 90 # When sendall() is called with pipe_trigger, raise EPIPE. 94 def sendall(self, data): member in EPipeSocket 1352 conn.sendall(b"HTTP/1.1 200 Connection established\r\n\r\n") 1366 s.sendall(b"proxied data\n")
|
/third_party/mesa3d/.gitlab-ci/ |
H A D | report-flakes.py | 41 self.s.sendall((line + '\n').encode())
|
/third_party/python/Lib/http/ |
H A D | client.py | 998 self.sock.sendall(datablock) 1002 self.sock.sendall(data) 1006 self.sock.sendall(d)
|
/third_party/skia/third_party/externals/angle2/third_party/logdog/logdog/ |
H A D | stream.py | 561 self._sock.sendall(data)
|
/third_party/python/Lib/logging/ |
H A D | handlers.py | 626 self.sock.sendall(s) 1015 self.socket.sendall(msg)
|