Home
last modified time | relevance | path

Searched refs:_socket (Results 1 – 25 of 30) sorted by relevance

12

/third_party/node/deps/npm/node_modules/socks/build/client/
Dsocksclient.js213 this._socket = existing_socket;
216 this._socket = new net.Socket();
219 this._socket.once('close', this._onClose);
220 this._socket.once('error', this._onError);
221 this._socket.once('connect', this._onConnect);
222 this._socket.on('data', this._onDataReceived);
226 this._socket.emit('connect');
229 this._socket.connect(this.getSocketOptions());
232 this._socket.setNoDelay(!!this._options.set_tcp_nodelay);
348 this._socket.pause();
[all …]
/third_party/flutter/flutter/packages/flutter_tools/lib/src/android/
Dandroid_console.dart29 AndroidConsole(this._socket);
31 Socket _socket;
35 assert(_socket != null);
38 _queue = StreamQueue<String>(_socket.asyncMap(ascii.decode));
50 if (_socket != null) {
51 _socket.destroy();
52 _socket = null;
74 _socket.add(ascii.encode(text));
/third_party/python/Lib/
Dsocket.py51 import _socket
52 from _socket import *
67 __all__.extend(os._get_exports_list(_socket))
214 class socket(_socket.socket):
232 _socket.socket.__init__(self, family, type, proto, fileno)
380 raise _socket.timeout('timed out')
493 def _real_close(self, _ss=_socket.socket):
547 if hasattr(_socket.socket, "sendmsg"):
555 return sock.sendmsg(buffers, [(_socket.SOL_SOCKET,
556 _socket.SCM_RIGHTS, array.array("i", fds))])
[all …]
Dssl.py257 import socket as _socket namespace
333 addr = _socket.inet_aton(ipname)
338 if _socket.inet_ntoa(addr) == ipname:
348 return _socket.inet_pton(_socket.AF_INET6, ipname)
/third_party/node/lib/internal/debugger/
Dinspect_client.js233 if (this._socket) {
234 this._socket.destroy();
238 this._socket = null;
245 if (!this._socket) {
256 this._socket.write(encodeFrameHybi17(Buffer.from(json)));
343 this._socket = socket;
/third_party/boost/libs/phoenix/example/
Dadapted_echo_server.cpp85 phx::expression::argument<1>::type _socket; in main() local
90 write(_socket, buffer(_buf, _length), phx::ref(write_handler)) in main()
94 … read(_socket, buffer(_buf, max_length), boost::asio::transfer_at_least(1), phx::ref(read_handler)) in main()
/third_party/grpc/src/python/grpcio_tests/tests_aio/unit/
Dchannel_ready_test.py35 address, self._port, self._socket = get_socket(
38 self._socket.close()
Dwait_for_ready_test.py98 address, self._port, self._socket = get_socket(listen=False)
101 self._socket.close()
/third_party/python/Lib/multiprocessing/
Dconnection.py584 self._socket = socket.socket(getattr(socket, family))
588 self._socket.setsockopt(socket.SOL_SOCKET,
590 self._socket.setblocking(True)
591 self._socket.bind(address)
592 self._socket.listen(backlog)
593 self._address = self._socket.getsockname()
595 self._socket.close()
609 s, self._last_accepted = self._socket.accept()
615 self._socket.close()
/third_party/node/deps/npm/node_modules/socks/typings/client/
Dsocksclient.d.ts21 private _socket; property in SocksClient
/third_party/node/test/common/
Dinspector-helper.js127 this._socket = socket;
161 this._socket.destroy();
214 (resolve) => this._socket.write(formatWSFrame(msg), resolve))
/third_party/python/Tools/freeze/
Dextensions_win32.ini28 [_socket] section
29 dsp=%PYTHONPREFIX%\PCbuild\_socket.dsp argument
/third_party/python/Lib/test/
Dtest___all__.py80 import _socket
Dtest_socket.py46 import _socket
48 _socket = None variable
833 import _socket
834 self.assertTrue(socket.SocketType is _socket.socket)
853 @unittest.skipUnless(_socket is not None, 'need _socket module')
855 s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM)
6468 @unittest.skipIf(not hasattr(_socket, 'IPPROTO_IPV6') or
6469 not hasattr(_socket, 'IPV6_V6ONLY'),
/third_party/python/PCbuild/
Dreadme.txt142 _socket
Dpcbuild.sln32 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcxproj", "{86937F53-C189-4…
/third_party/python/Modules/
DSetup210 #_socket socketmodule.c
/third_party/glib/gio/
Dgsocket.c335 #define win32_unset_event_mask(_socket, _mask) _win32_unset_event_mask (_socket, _mask) argument
345 #define win32_unset_event_mask(_socket, _mask) argument
/third_party/python/Lib/test/test_asyncio/
Dtest_base_events.py1083 def _socket(*args, **kw): function
1088 m_socket.socket = _socket
/third_party/python/Doc/howto/
Dsockets.rst1 .. _socket-howto:
/third_party/python/Doc/library/
Dsocket.rst1142 .. _socket-objects:
1786 .. _socket-timeouts:
1840 .. _socket-example:
Dlogging.handlers.rst444 .. _socket-handler:
/third_party/flutter/engine/flutter/lib/snapshot/
Dfuchsia_compilation_trace.txt1490 dart:io,_RawSocket,get:_socket
1585 dart:io,_HttpClientConnection,get:_socket
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dcompilation_trace.txt89 dart:_http,_HttpClientConnection,get:_socket
2223 dart:io,_RawSecureSocket,get:_socket
2267 dart:io,_RawSocket,get:_socket
/third_party/python/Doc/whatsnew/
D2.3.rst1113 <type '_socket.socket'>

12