Home
last modified time | relevance | path

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

123

/external/python/httplib2/python3/httplib2/
Dsocks.py177 def sendall(self, content, *args): member in socksocket
183 return super(socksocket, self).sendall(content, *args)
258 self.sendall(struct.pack("BBBB", 0x05, 0x02, 0x00, 0x02))
262 self.sendall(struct.pack("BBB", 0x05, 0x01, 0x00))
276 self.sendall(
323 self.sendall(req)
397 self.sendall(req)
445 self.sendall("".join(headers).encode())
/external/python/httplib2/python2/httplib2/
Dsocks.py177 def sendall(self, content, *args): member in socksocket
183 return super(socksocket, self).sendall(content, *args)
252 self.sendall(struct.pack("BBBB", 0x05, 0x02, 0x00, 0x02))
256 self.sendall(struct.pack("BBB", 0x05, 0x01, 0x00))
270 self.sendall(
317 self.sendall(req)
391 self.sendall(req)
439 self.sendall("".join(headers).encode())
/external/autotest/client/site_tests/platform_TLSDateActual/
Dplatform_TLSDateActual.py55 self.dest.sendall(data)
120 sock.sendall(SOCKS5_VER + AUTH_NONE)
129 socket.sendall(SOCKS5_VER + ERR_UNSUPP + network_ip + network_port)
133 sock.sendall(SOCKS5_VER + ERR_SUCCESS + "\x00" + "\x01" +
138 sock.sendall(SOCKS5_VER + ERR_UNSUPP + network_ip + network_port)
/external/v8/tools/
Dadb-d8.py51 self.request.sendall(struct.pack("!i", len(contents)))
52 self.request.sendall(contents)
58 self.request.sendall(struct.pack("!i", -1))
/external/curl/tests/
Ddictserver.py58 self.request.sendall(rsp.encode("utf-8"))
75 self.request.sendall(response.encode("utf-8"))
Dnegtelnetserver.py80 self.request.sendall(response_data)
191 self.tcp.sendall(bytearray(message_ints))
/external/python/oauth2client/tests/contrib/
Dtest_devshell.py109 mock.call.sendall(msg),
164 s.sendall('{0}\n{1}'.format(l, self.response).encode())
187 sock.sendall(request_message)
/external/python/cpython2/Lib/
Dftplib.py178 self.sock.sendall(line)
243 self.sock.sendall(line, MSG_OOB)
484 conn.sendall(buf)
513 conn.sendall(buf)
777 conn.sendall(buf)
798 conn.sendall(buf)
Dtelnetlib.py283 self.sock.sendall(buffer)
531 self.sock.sendall(IAC + WONT + opt)
538 self.sock.sendall(IAC + DONT + opt)
/external/python/cpython3/Lib/
Dftplib.py194 self.sock.sendall(line.encode(self.encoding))
264 self.sock.sendall(line, MSG_OOB)
509 conn.sendall(buf)
540 conn.sendall(buf)
807 self.sock.sendall(line)
Dtelnetlib.py290 self.sock.sendall(buffer)
479 self.sock.sendall(IAC + WONT + opt)
486 self.sock.sendall(IAC + DONT + opt)
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_sslproto.py227 sock.sendall(b'O')
288 sock.sendall(b'O')
292 sock.sendall(b'2')
445 sock.sendall(HELLO_MSG)
643 sock.sendall(b'A\n')
/external/ltp/testcases/network/lib6/
Dasapi_03.c195 static ssize_t sendall(int st) in sendall() function
290 if (sendall(st) < 0) in so_test()
/external/python/oauth2client/oauth2client/contrib/
Ddevshell.py83 sock.sendall(_helpers._to_bytes(msg, encoding='utf-8'))
/external/python/cpython3/Lib/test/
Dmock_socket.py94 def sendall(self, buffer, flags=None): member in MockSocket
Dtest_socketserver.py162 s.sendall(TEST_STR)
436 s.sendall(b'client response\n')
Dtest_nntplib.py1544 client.sendall(b'200 Server ready\r\n')
1548 client.sendall(
1556 client.sendall(b'382 Begin TLS negotiation now\r\n')
1564 client.sendall(b'205 Bye!\r\n')
/external/python/cpython2/Doc/library/
Dsocketserver.rst424 self.request.sendall(self.data.upper())
454 from the client in one ``sendall()`` call.
471 sock.sendall(data + "\n")
573 self.request.sendall(response)
582 sock.sendall(message)
/external/honggfuzz/socketfuzzer/
Dhonggfuzz_socketclient.py32 self.sock.sendall( str.encode(data) )
/external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
Dprotocol_socket.py171 self._socket.sendall(to_bytes(data))
/external/python/cpython3/Doc/library/
Dsocketserver.rst467 self.request.sendall(self.data.upper())
496 from the client in one ``sendall()`` call.
511 sock.sendall(bytes(data + "\n", "utf-8"))
611 self.request.sendall(response)
619 sock.sendall(bytes(message, 'ascii'))
/external/python/cpython3/Lib/http/
Dclient.py974 self.sock.sendall(datablock)
977 self.sock.sendall(data)
981 self.sock.sendall(d)
/external/tensorflow/tensorflow/contrib/ignite/python/ops/
Dignite_dataset_ops.py161 self.sock.sendall(v.encode("UTF-8"))
179 self.sock.sendall(data_buffer)
/external/python/httplib2/tests/
D__init__.py335 sock.sendall(response)
354 sock.sendall(response)
/external/walt/pywalt/pywalt/
Dwalt.py663 self.net.sendall(reply)
707 self.net.sendall(data)

123