Home
last modified time | relevance | path

Searched refs:sendall (Results 1 – 25 of 75) 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)
260 self.sendall(struct.pack("BBBB", 0x05, 0x02, 0x00, 0x02))
264 self.sendall(struct.pack("BBB", 0x05, 0x01, 0x00))
284 self.sendall(packet)
325 self.sendall(req)
399 self.sendall(req)
447 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)
260 self.sendall(struct.pack("BBBB", 0x05, 0x02, 0x00, 0x02))
264 self.sendall(struct.pack("BBB", 0x05, 0x01, 0x00))
278 self.sendall(
325 self.sendall(req)
399 self.sendall(req)
447 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/curl/tests/
Ddictserver.py82 self.request.sendall(rsp.encode("utf-8"))
103 self.request.sendall(response.encode("utf-8"))
Dnegtelnetserver.py104 self.request.sendall(response_data)
215 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)
Dpoplib.py97 self.sock.sendall('%s%s' % (line, CRLF))
/external/python/cpython3/Lib/asyncio/
Dtrsock.py149 def sendall(self, *args, **kwargs): member in TransportSocket
151 return self._sock.sendall(*args, **kwargs)
/external/python/cpython3/Lib/
Dftplib.py200 self.sock.sendall(line.encode(self.encoding))
270 self.sock.sendall(line, MSG_OOB)
496 conn.sendall(buf)
527 conn.sendall(buf)
795 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)
/external/python/cpython3/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')
/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, data, flags=None): member in MockSocket
Dtest_socketserver.py161 s.sendall(TEST_STR)
433 s.sendall(b'client response\n')
/external/pigweed/pw_hdlc/py/pw_hdlc/
Drpc_console.py118 self.socket.sendall(data)
/external/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
Dgdbclientutils.py460 self._client.sendall(seven.bitcast_to_bytes('+'))
470 self._client.sendall(seven.bitcast_to_bytes(framed))
/external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
Dprotocol_socket.py171 self._socket.sendall(to_bytes(data))
/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/python/cpython3/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'))
/external/python/pyopenssl/tests/
Dtest_ssl.py3192 connection.sendall(object())
3194 connection.sendall([1, 2, 3])
3202 server.sendall(b"x")
3213 server.sendall(b"x".decode("ascii"))
3225 server.sendall(memoryview(b"x"))
3235 count = server.sendall(buffer(b"xy")) # noqa: F821
3249 server.sendall(message)
3266 server.sendall(b"hello, world")
/external/python/cpython3/Lib/http/
Dclient.py968 self.sock.sendall(datablock)
971 self.sock.sendall(data)
975 self.sock.sendall(d)

123