Home
last modified time | relevance | path

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

12

/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)
494 def _real_close(self, _ss=_socket.socket):
548 if hasattr(_socket.socket, "sendmsg"):
556 return sock.sendmsg(buffers, [(_socket.SOL_SOCKET,
557 _socket.SCM_RIGHTS, array.array("i", fds))])
560 if hasattr(_socket.socket, "recvmsg"):
[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.js229 if (this._socket) {
230 this._socket.destroy();
234 this._socket = null;
241 if (!this._socket) {
252 this._socket.write(encodeFrameHybi17(Buffer.from(json)));
336 this._socket = socket;
/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/test/common/
Dinspector-helper.js125 this._socket = socket;
160 this._socket.destroy();
213 (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__.py81 import _socket
Dtest_socket.py48 import _socket
50 _socket = None variable
831 import _socket
832 self.assertTrue(socket.SocketType is _socket.socket)
851 @unittest.skipUnless(_socket is not None, 'need _socket module')
853 s = _socket.socket(_socket.AF_INET, _socket.SOCK_STREAM)
6475 @unittest.skipIf(not hasattr(_socket, 'IPPROTO_IPV6') or
6476 not hasattr(_socket, 'IPV6_V6ONLY'),
/third_party/FreeBSD/lib/libc/include/
Dnamespace.h235 #define socket _socket
/third_party/python/PCbuild/
Dreadme.txt145 _socket
Dpcbuild.sln32 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcxproj", "{86937F53-C189-4…
/third_party/python/Modules/
DSetup207 #_socket socketmodule.c
/third_party/python/Lib/test/test_asyncio/
Dtest_base_events.py1092 def _socket(*args, **kw): function
1097 m_socket.socket = _socket
/third_party/python/Doc/howto/
Dsockets.rst1 .. _socket-howto:
/third_party/python/Doc/library/
Dsocket.rst1182 .. _socket-objects:
1803 .. _socket-timeouts:
1857 .. _socket-example:
Dlogging.handlers.rst464 .. _socket-handler:
/third_party/python/Misc/NEWS.d/
D3.6.0a1.rst1498 Implement a safe finalizer for the _socket.socket type. It now releases the
D3.5.0a1.rst2870 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on
/third_party/python/Doc/whatsnew/
D2.3.rst1113 <type '_socket.socket'>
/third_party/node/deps/corepack/dist/lib/
Dcorepack.cjs12106 this._socket = this.socket = this._newSocket();
12146 return this._socket;
12156 if (this._socket) {
12157 const newSocketUpgradesExisting = socket.localPort === this._socket.localPort;
12177 this._socket = socket;
12221 this._socket.write(command + "\r\n", this.encoding);
12289 return "encrypted" in this._socket;
12349 this._removeSocketListeners(this._socket);
12350 this._socket.on("error", doNothing);
12352 this._closeSocket(this._socket);
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch11394 self.add(Extension('_socket', ['socketmodule.c'], **kwargs))
/third_party/node/doc/changelogs/
DCHANGELOG_V11.md550 …e/commit/b8abb81666)] - **src**: remove unused struct in test\_inspector\_socket.cc (gengjiawen) […
733 …dejs/node/commit/3e0978d7a3)] - **src**: clean unused macro in inspector\_socket.cc (gengjiawen) […
DCHANGELOG_V7.md1100 …ub.com/nodejs/node/commit/f0de955220)] - **src**: reduce test\_inspector\_socket\_server output (D…
DCHANGELOG_V15.md2097 * \[[`10d5047a4f`](https://github.com/nodejs/node/commit/10d5047a4f)] - **quic**: fixup set\_socket
/third_party/python/Misc/
DHISTORY1528 - Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError
12069 supporting the whole socket API (rather than the "raw" _socket.socket
14163 - Issue #8235: _socket: Add the constant ``SO_SETFIB``. SO_SETFIB is a socket
23007 _socket module C helper and placed into a new _ssl helper
32266 extension is called _socket and a wrapper module win/socket.py provides

12