| /third_party/node/test/parallel/ |
| D | test-net-isip.js | 25 const net = require('net'); constant 27 assert.strictEqual(net.isIP('127.0.0.1'), 4); 28 assert.strictEqual(net.isIP('x127.0.0.1'), 0); 29 assert.strictEqual(net.isIP('example.com'), 0); 30 assert.strictEqual(net.isIP('0000:0000:0000:0000:0000:0000:0000:0000'), 6); 31 assert.strictEqual(net.isIP('0000:0000:0000:0000:0000:0000:0000:0000::0000'), 33 assert.strictEqual(net.isIP('1050:0:0:0:5:600:300c:326b'), 6); 34 assert.strictEqual(net.isIP('2001:252:0:1::2008:6'), 6); 35 assert.strictEqual(net.isIP('2001:dead:beef:1::2008:6'), 6); 36 assert.strictEqual(net.isIP('2001::'), 6); [all …]
|
| D | test-net-connect-options-path.js | 3 const net = require('net'); constant 5 // This file tests the option handling of net.connect, 6 // net.createConnect, and new Socket().connect 15 const prefix = `${common.PIPE}-net-connect-options-path`; 18 const server = net.createServer() 34 net.connect(serverPath, getConnectCb()).resume(); 35 net.connect(serverPath) 38 net.createConnection(serverPath, getConnectCb()).resume(); 39 net.createConnection(serverPath) 42 new net.Socket().connect(serverPath, getConnectCb()).resume(); [all …]
|
| D | test-net-server-listen-handle.js | 6 const net = require('net'); constant 67 net.createServer() 71 net.createServer() 87 net.createServer() 91 net.createServer() 97 net.createServer() 100 net.createServer() 104 net.createServer() 107 net.createServer() 114 net.createServer() [all …]
|
| D | test-ref-unref-return.js | 4 const net = require('net'); constant 7 assert.ok((new net.Server()).ref() instanceof net.Server); 8 assert.ok((new net.Server()).unref() instanceof net.Server); 9 assert.ok((new net.Socket()).ref() instanceof net.Socket); 10 assert.ok((new net.Socket()).unref() instanceof net.Socket);
|
| /third_party/node/test/fixtures/wpt/url/resources/ |
| D | setters_tests.json | 27 "href": "a://example.net", 30 "href": "a://example.net", 35 "href": "a://example.net", 38 "href": "b://example.net", 52 "href": "a://example.net", 55 "href": "b://example.net", 61 "href": "a://example.net", 64 "href": "a://example.net", 70 "href": "a://example.net", 73 "href": "a://example.net", [all …]
|
| /third_party/rust/crates/rustix/tests/net/ |
| D | connect_bind_send.rs | 1 use rustix::net::{ 5 use std::net::{IpAddr, Ipv4Addr, SocketAddr}; 13 rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default())?; in net_v4_connect_any() 14 rustix::net::bind(&listener, &addr).expect("bind"); in net_v4_connect_any() 15 rustix::net::listen(&listener, 1).expect("listen"); in net_v4_connect_any() 17 let local_addr = rustix::net::getsockname(&listener)?; in net_v4_connect_any() 18 let sender = rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default())?; in net_v4_connect_any() 19 rustix::net::connect_any(&sender, &local_addr).expect("connect"); in net_v4_connect_any() 21 let n = rustix::net::send(&sender, request, SendFlags::empty()).expect("send"); in net_v4_connect_any() 27 let accepted = rustix::net::accept(&listener).expect("accept"); in net_v4_connect_any() [all …]
|
| D | sockopt.rs | 3 use rustix::net::{AddressFamily, Protocol, SocketType}; in test_sockopts() 7 rustix::net::socket(AddressFamily::INET, SocketType::STREAM, Protocol::default()).unwrap(); in test_sockopts() 11 rustix::net::sockopt::get_socket_timeout(&s, rustix::net::sockopt::Timeout::Recv) in test_sockopts() 16 rustix::net::sockopt::get_socket_type(&s).unwrap(), in test_sockopts() 20 assert!(!rustix::net::sockopt::get_socket_broadcast(&s).unwrap()); in test_sockopts() 22 assert!(rustix::net::sockopt::get_socket_linger(&s) in test_sockopts() 26 assert!(!rustix::net::sockopt::get_socket_passcred(&s).unwrap()); in test_sockopts() 27 assert_ne!(rustix::net::sockopt::get_ip_ttl(&s).unwrap(), 0); in test_sockopts() 28 assert_ne!(rustix::net::sockopt::get_ip_ttl(&s).unwrap(), 77); in test_sockopts() 38 assert!(rustix::net::sockopt::get_ip_multicast_loop(&s).unwrap()); in test_sockopts() [all …]
|
| /third_party/libexif/ |
| D | ChangeLog | 3 * Updated many translations from launchpad.net 4 * Added new translation from launchpad.net's "yakkety" translations: 71 * Updated non-TP translations from launchpad.net's "precise" 74 * Added new translations from launchpad.net's "precise" translations: 111 https://bugs.launchpad.net/bugs/712115 reported by Daniel Thibault). 120 * Updated non-TP translations from launchpad.net: 122 * po/bs.po: Added Bosnian translation from launchpad.net 123 * po/tr.po: Added Turkish translation from launchpad.net 239 * Added a bunch of new translations from launchpad.net 344 2009-09-23 Jan Patera <patera@users.sourceforge.net> [all …]
|
| /third_party/libwebsockets/lib/core-net/ |
| D | CMakeLists.txt | 28 core-net/dummy-callback.c 29 core-net/output.c 30 core-net/close.c 31 core-net/network.c 32 core-net/vhost.c 33 core-net/pollfd.c 34 core-net/service.c 35 core-net/sorted-usec-list.c 36 core-net/wsi.c 37 core-net/wsi-timeout.c [all …]
|
| /third_party/rust/crates/io-lifetimes/src/ |
| D | impls_mio.rs | 17 impl AsFd for mio::net::TcpStream { 25 impl AsSocket for mio::net::TcpStream { 33 impl IntoFd for mio::net::TcpStream { 41 impl From<mio::net::TcpStream> for OwnedFd { 43 fn from(owned: mio::net::TcpStream) -> Self { in from() 49 impl IntoSocket for mio::net::TcpStream { 57 impl From<mio::net::TcpStream> for OwnedSocket { 59 fn from(owned: mio::net::TcpStream) -> Self { in from() 65 impl FromFd for mio::net::TcpStream { 73 impl From<OwnedFd> for mio::net::TcpStream { [all …]
|
| D | impls_async_std.rs | 104 impl AsFd for async_std::net::TcpStream { 112 impl AsSocket for async_std::net::TcpStream { 120 impl IntoFd for async_std::net::TcpStream { 128 impl From<async_std::net::TcpStream> for OwnedFd { 130 fn from(owned: async_std::net::TcpStream) -> Self { in from() 136 impl IntoSocket for async_std::net::TcpStream { 144 impl From<async_std::net::TcpStream> for OwnedSocket { 146 fn from(owned: async_std::net::TcpStream) -> Self { in from() 152 impl FromFd for async_std::net::TcpStream { 160 impl From<OwnedFd> for async_std::net::TcpStream { [all …]
|
| D | impls_std.rs | 213 impl AsFd for std::net::TcpStream { 221 impl AsSocket for std::net::TcpStream { 229 impl IntoFd for std::net::TcpStream { 237 impl From<std::net::TcpStream> for OwnedFd { 239 fn from(owned: std::net::TcpStream) -> Self { in from() 245 impl IntoSocket for std::net::TcpStream { 253 impl From<std::net::TcpStream> for OwnedSocket { 255 fn from(owned: std::net::TcpStream) -> Self { in from() 261 impl FromFd for std::net::TcpStream { 269 impl From<OwnedFd> for std::net::TcpStream { [all …]
|
| /third_party/toybox/www/ |
| D | cleanup.html | 23 <p>Toybox <a href=http://landley.net/notes.html#31-03-2013>hasn't always</a> 64 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000850.html>Error mess… 65 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000891.html>Why not "c… 69 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000893.html>Why not to… 70 <li><a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-June/001044.html>Relationshi… 80 90's). Here's <a href=https://lwn.net/Articles/683745/>Linus Torvalds' take</a>.</li> 100 …</a>: first pass, description: <a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-… 101 <a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/000903.html>part 2</a></li> 103 second pass, description: <a href=http://lists.landley.net/pipermail/toybox-landley.net/2013-April/… 128 description: <a href=http://lists.landley.net/pipermail/toybox-landley.net/2014-January/001532.html… [all …]
|
| D | release.txt | 11 scp toybox-$VER.tar.gz landley.net:landley.net/toybox/downloads 12 scp www/news.html landley.net:landley.net/toybox/ 18 ssh landley.net "mkdir landley.net/toybox/downloads/binaries/$VER" 19 scp send/toybox-* landley.net:landley.net/toybox/downloads/binaries/$VER/ 24 scp www/help.html landley.net:landley.net/toybox/ 26 - scp www/status.gen landley.net:landley.net/toybox/ 29 Inform mailing list (with link to https://landley.net/toybox) 31 Toybox 0.7.3 released February 21, 2017. http://landley.net/toybox
|
| /third_party/node/doc/api/ |
| D | net.md | 1 # Net chapter 9 <!-- source_link=lib/net.js --> 11 The `node:net` module provides an asynchronous network API for creating stream-based 12 TCP or [IPC][] servers ([`net.createServer()`][]) and clients 13 ([`net.createConnection()`][]). 18 const net = require('node:net'); 23 The `node:net` module supports IPC with named pipes on Windows, and Unix domain 28 [`net.connect()`][], [`net.createConnection()`][], [`server.listen()`][], and 36 [`net.createServer()`][] may create a Unix domain socket and 55 net.createServer().listen( [all …]
|
| /third_party/python/Doc/library/ |
| D | tkinter.tix.rst | 7 .. sectionauthor:: Mike Clarkson <mikeclarkson@users.sourceforge.net> 36 `Tix Homepage <https://tix.sourceforge.net/>`_ 40 `Tix Man Pages <https://tix.sourceforge.net/dist/current/man/>`_ 43 `Tix Programming Guide <https://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html>`_ 46 `Tix Development Applications <https://tix.sourceforge.net/Tixapps/src/Tide.html>`_ 83 `Tix <https://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro.htm>`_ 94 <https://tix.sourceforge.net/dist/current/man/html/TixCmd/tixBalloon.htm>`_ that 100 .. \ulink{Balloon}{https://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl} 106 <https://tix.sourceforge.net/dist/current/man/html/TixCmd/tixButtonBox.htm>`_ 110 .. \ulink{ButtonBox}{https://tix.sourceforge.net/dist/current/demos/samples/BtnBox.tcl} [all …]
|
| /third_party/lame/mpglib/ |
| D | AUTHORS | 3 Albert L. Faber <afaber@users.sf.net> 4 Aleksander Korzynski <olcios@users.sf.net> 5 Alexander Leidinger <aleidinger@users.sf.net> 6 Frank Klemm <pfk@users.sf.net> 7 Gabriel Bouvigne <bouvigne@users.sf.net> 8 Leigh Smith <leighsmith@users.sf.net> 9 Mark Taylor <markt@users.sf.net> 10 Myers Carpenter <myers@users.sf.net> 11 Naoki Shibata <shibatch@users.sf.net> 12 Robert Hegemann <robert@users.sf.net> [all …]
|
| /third_party/notofonts/docs/ |
| D | index.html | 9 href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css" 15 src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" 20 src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js" 397 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/unhinted/otf/N… 404 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/unhinted/otf/N… 411 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/unhinted/slim-… 418 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/unhinted/ttf/N… 425 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/unhinted/ttf/N… 432 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/unhinted/varia… 445 …href="https://cdn.jsdelivr.net/gh/notofonts/notofonts.github.io/fonts/NotoSansAdlam/hinted/ttf/Not… [all …]
|
| /third_party/ltp/testcases/network/stress/multicast/grp-operation/ |
| D | mcast-lib.sh | 13 SYSFS_IGMP_MAX_MEMBERSHIPS=$(sysctl -b net.ipv4.igmp_max_memberships) 14 SYSFS_IGMP_MAX_MSF=$(sysctl -b net.ipv4.igmp_max_msf) 15 SYSFS_FORCE_IGMP_VERSION=$(sysctl -b net.ipv4.conf.$(tst_iface).force_igmp_version) 16 SYSFS_ALL_FORCE_IGMP_VERSION=$(sysctl -b net.ipv4.conf.all.force_igmp_version) 19 …"\$1 shouldn't be set higher than 5459 as it's used to set /proc/sys/net/ipv4/igmp_max_memberships" 21 ROD sysctl -q -w net.ipv4.igmp_max_memberships=$igmp_max_memberships 22 ROD sysctl -q -w net.ipv4.igmp_max_msf=10 23 ROD sysctl -q -w net.ipv4.conf.$(tst_iface).force_igmp_version=0 24 ROD sysctl -q -w net.ipv4.conf.all.force_igmp_version=0 31 SYSCTL_ALL_FORCE_MLD_VERSION=$(sysctl -b net.ipv6.conf.all.force_mld_version) [all …]
|
| /third_party/mesa3d/ |
| D | .mailmap | 3 Adam Jackson <ajax@redhat.com> <ajax@benzedrine.nwnk.net> 9 Alan Swanson <reiver@improbability.net> <swanson@ukfsn.org> 75 Ben Skeggs <bskeggs@redhat.com> <darktama@iinet.net.au> 82 Ben Widawsky <benjamin.widawsky@intel.com> Ben Widawsky <ben@bwidawsk.net> 88 Boris Peterbarg <reist@users.sourceforge.net> reist <reist> 95 Brian Paul <brianp@vmware.com> Brian <brian@i915.localnet.net> 96 Brian Paul <brianp@vmware.com> Brian <brian@nostromo.localnet.net> 97 Brian Paul <brianp@vmware.com> Brian <brian@poulsbo.localnet.net> 98 Brian Paul <brianp@vmware.com> Brian <brian@ps3.localnet.net> 100 Brian Paul <brianp@vmware.com> Brian <brian@yutani.localnet.net> [all …]
|
| /third_party/mesa3d/src/gallium/drivers/nouveau/ |
| D | nv31_mpeg.xml.h | 7 http://0x04.net/cgit/index.cgi/rules-ng-ng 8 git clone git://0x04.net/rules-ng-ng 21 - B. R. <koala_br@users.sourceforge.net> (koala_br) 22 - Carlos Martin <carlosmn@users.sf.net> (carlosmn) 24 - Dawid Gajownik <gajownik@users.sf.net> (gajownik) 26 - Dmitry Eremin-Solenikov <lumag@users.sf.net> (lumag) 27 - EdB <edb_@users.sf.net> (edb_) 28 - Erik Waling <erikwailing@users.sf.net> (erikwaling) 29 - Francisco Jerez <currojerez@riseup.net> (curro) 30 - imirkin <imirkin@users.sf.net> (imirkin) [all …]
|
| D | nv_m2mf.xml.h | 7 http://0x04.net/cgit/index.cgi/rules-ng-ng 8 git clone git://0x04.net/rules-ng-ng 21 - B. R. <koala_br@users.sourceforge.net> (koala_br) 22 - Carlos Martin <carlosmn@users.sf.net> (carlosmn) 24 - Dawid Gajownik <gajownik@users.sf.net> (gajownik) 26 - Dmitry Eremin-Solenikov <lumag@users.sf.net> (lumag) 27 - EdB <edb_@users.sf.net> (edb_) 28 - Erik Waling <erikwailing@users.sf.net> (erikwaling) 29 - Francisco Jerez <currojerez@riseup.net> (curro) 30 - imirkin <imirkin@users.sf.net> (imirkin) [all …]
|
| /third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
| D | nv50_3ddefs.xml.h | 17 - B. R. <koala_br@users.sourceforge.net> (koala_br) 18 - Carlos Martin <carlosmn@users.sf.net> (carlosmn) 20 - Dawid Gajownik <gajownik@users.sf.net> (gajownik) 22 - Dmitry Eremin-Solenikov <lumag@users.sf.net> (lumag) 23 - EdB <edb_@users.sf.net> (edb_) 24 - Erik Waling <erikwailing@users.sf.net> (erikwaling) 25 - Francisco Jerez <currojerez@riseup.net> (curro) 26 - imirkin <imirkin@users.sf.net> (imirkin) 27 - jb17bsome <jb17bsome@bellsouth.net> (jb17bsome) 28 - Jeremy Kolb <kjeremy@users.sf.net> (kjeremy) [all …]
|
| /third_party/toybox/ |
| D | README | 7 http://landley.net/toybox/bin 13 wget http://landley.net/toybox/bin/toybox-x86_64 42 https://landley.net/toybox/downloads/binaries/toolchains/latest 51 https://landley.net/toybox/faq.html#cross 52 http://landley.net/writing/docs/cross-compiling.html 53 http://landley.net/aboriginal/architectures.html 57 http://landley.net/toybox/code.html#building 107 https://landley.net/toybox/faq.html#system 108 https://landley.net/toybox/faq.html#mkroot 114 outline: http://landley.net/talks/celf-2013.txt [all …]
|
| /third_party/curl/docs/ |
| D | BINDINGS.md | 23 [Ch](https://chcurl.sourceforge.net/) Written by Stephen Nestinger and Jonathan Rogado 30 [D](https://dlang.org/library/std/net/curl.html) Written by Kenneth Bogert 34 [Dylan](https://dylanlibs.sourceforge.net/) Written by Chris Double 46 [Gambas](https://gambas.sourceforge.net/) 48 [glib/GTK+](https://web.archive.org/web/20100526203452/atterer.net/glibcurl) Written by Richard Att… 66 [Lisp](https://common-lisp.net/project/cl-curl/) Written by Liam Healy 68 Lua: [luacurl](https://web.archive.org/web/20201205052437/luacurl.luaforge.net/) by Alexander Marin… 72 [.NET](https://sourceforge.net/projects/libcurl-net/) libcurl-net by Jeffrey Phillips 86 [perl6-net-curl](https://github.com/azawawi/perl6-net-curl) by Ahmad M. Zawawi 87 [NET::Curl](https://metacpan.org/pod/Net::Curl) by Przemyslaw Iskra [all …]
|