/third_party/python/Lib/ |
D | socket.py | 51 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 …]
|
D | ssl.py | 257 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/ |
D | inspect_client.js | 229 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/ |
D | connection.py | 584 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/ |
D | inspector-helper.js | 125 this._socket = socket; 160 this._socket.destroy(); 213 (resolve) => this._socket.write(formatWSFrame(msg), resolve))
|
/third_party/python/Tools/freeze/ |
D | extensions_win32.ini | 28 [_socket] section 29 dsp=%PYTHONPREFIX%\PCbuild\_socket.dsp argument
|
/third_party/python/Lib/test/ |
D | test___all__.py | 81 import _socket
|
D | test_socket.py | 48 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/ |
D | namespace.h | 235 #define socket _socket
|
/third_party/python/PCbuild/ |
D | readme.txt | 145 _socket
|
D | pcbuild.sln | 32 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcxproj", "{86937F53-C189-4…
|
/third_party/python/Modules/ |
D | Setup | 207 #_socket socketmodule.c
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_base_events.py | 1092 def _socket(*args, **kw): function 1097 m_socket.socket = _socket
|
/third_party/python/Doc/howto/ |
D | sockets.rst | 1 .. _socket-howto:
|
/third_party/python/Doc/library/ |
D | socket.rst | 1182 .. _socket-objects: 1803 .. _socket-timeouts: 1857 .. _socket-example:
|
D | logging.handlers.rst | 464 .. _socket-handler:
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a1.rst | 1498 Implement a safe finalizer for the _socket.socket type. It now releases the
|
D | 3.5.0a1.rst | 2870 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on
|
/third_party/python/Doc/whatsnew/ |
D | 2.3.rst | 1113 <type '_socket.socket'>
|
/third_party/node/deps/corepack/dist/lib/ |
D | corepack.cjs | 12106 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/ |
D | cpython_mingw_v3.10.2.patch | 11394 self.add(Extension('_socket', ['socketmodule.c'], **kwargs))
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V11.md | 550 …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) […
|
D | CHANGELOG_V7.md | 1100 …ub.com/nodejs/node/commit/f0de955220)] - **src**: reduce test\_inspector\_socket\_server output (D…
|
D | CHANGELOG_V15.md | 2097 * \[[`10d5047a4f`](https://github.com/nodejs/node/commit/10d5047a4f)] - **quic**: fixup set\_socket…
|
/third_party/python/Misc/ |
D | HISTORY | 1528 - 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
|