/third_party/python/Lib/ |
D | netrc.py | 27 self.hosts = {} 72 self.hosts[entryname] = {} 78 self.hosts[entryname] = (login, account, password) 119 if host in self.hosts: 120 return self.hosts[host] 121 elif 'default' in self.hosts: 122 return self.hosts['default'] 129 for host in self.hosts.keys(): 130 attrs = self.hosts[host]
|
D | ipaddress.py | 688 def hosts(self): member in _BaseNetwork 1516 self.hosts = self.__iter__ 1518 self.hosts = lambda: [IPv4Address(addr)] 2225 self.hosts = self.__iter__ 2227 self.hosts = lambda: [IPv6Address(addr)] 2229 def hosts(self): member in IPv6Network
|
/third_party/openssl/crypto/x509/ |
D | x509_vpm.c | 54 sk_OPENSSL_STRING_pop_free(vpm->hosts, str_free); in int_x509_param_set_hosts() 55 vpm->hosts = NULL; in int_x509_param_set_hosts() 64 if (vpm->hosts == NULL && in int_x509_param_set_hosts() 65 (vpm->hosts = sk_OPENSSL_STRING_new_null()) == NULL) { in int_x509_param_set_hosts() 70 if (!sk_OPENSSL_STRING_push(vpm->hosts, copy)) { in int_x509_param_set_hosts() 72 if (sk_OPENSSL_STRING_num(vpm->hosts) == 0) { in int_x509_param_set_hosts() 73 sk_OPENSSL_STRING_free(vpm->hosts); in int_x509_param_set_hosts() 74 vpm->hosts = NULL; in int_x509_param_set_hosts() 103 sk_OPENSSL_STRING_pop_free(param->hosts, str_free); in X509_VERIFY_PARAM_free() 197 if (test_x509_verify_param_copy(hosts, NULL)) { in X509_VERIFY_PARAM_inherit() [all …]
|
D | x509_local.h | 32 STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */
|
/third_party/python/Lib/test/ |
D | test_netrc.py | 24 self.assertEqual(nrc.hosts['host1.domain.com'], 26 self.assertEqual(nrc.hosts['default'], ('log2', None, 'pass2')) 29 self.assertEqual(nrc.hosts, nrc2.hosts) 46 self.assertEqual(nrc.hosts['host.domain.com'], ('log', 'acct', passwd)) 65 self.assertEqual(nrc.hosts['foo.domain.com'], ('bar', None, passwd)) 66 self.assertEqual(nrc.hosts['bar.domain.com'], ('foo', None, 'pass')) 123 self.assertEqual(nrc.hosts['foo.domain.com'],
|
D | test_ipaddress.py | 1412 hosts = list(self.ipv4_network.hosts()) 1413 self.assertEqual(254, len(hosts)) 1414 self.assertEqual(ipaddress.IPv4Address('1.2.3.1'), hosts[0]) 1415 self.assertEqual(ipaddress.IPv4Address('1.2.3.254'), hosts[-1]) 1418 hosts = list(ipv6_network.hosts()) 1419 self.assertEqual(255, len(hosts)) 1420 self.assertEqual(ipaddress.IPv6Address('2001:658:22a:cafe::1'), hosts[0]) 1421 self.assertEqual(ipaddress.IPv6Address('2001:658:22a:cafe::ff'), hosts[-1]) 1424 hosts = list(ipv6_scoped_network.hosts()) 1425 self.assertEqual(255, len(hosts)) [all …]
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
D | test_https_sni.c | 55 static struct Hosts *hosts; variable 73 host->next = hosts; in load_keys() 74 hosts = host; in load_keys() 155 for (host = hosts; NULL != host; host = host->next) in sni_callback()
|
/third_party/node/deps/npm/node_modules/hosted-git-info/ |
D | README.md | 3 This will let you identify and transform various git hosts URLs between 84 `https://github.com/npm/hosted-git-info/tree/v1.2.0/REAMDE.md#supported-hosts` 130 ## Supported hosts 133 additional hosts welcome.
|
/third_party/cups/ |
D | backport-CVE-2023-34241.patch | 58 "Connection from %s refused by /etc/hosts.allow and " 59 "/etc/hosts.deny rules.", httpGetHostname(con->http, NULL, 0));
|
/third_party/alsa-utils/seq/aseqnet/ |
D | README.aseqnet | 10 network. Suppose two hosts (hostA and hostB) connected by network. 11 You need to run ALSA system on both hosts. Then, start aseqnet as a
|
/third_party/python/Doc/library/ |
D | ipaddress.rst | 18 hosts are on the same subnet, iterating over all hosts in a particular 558 .. method:: hosts() 560 Returns an iterator over the usable hosts in the network. The usable 561 hosts are all the IP addresses that belong to the network, except the 567 >>> list(ip_network('192.0.2.0/29').hosts()) #doctest: +NORMALIZE_WHITESPACE 571 >>> list(ip_network('192.0.2.0/31').hosts()) 573 >>> list(ip_network('192.0.2.1/32').hosts()) 730 .. method:: hosts() 732 Returns an iterator over the usable hosts in the network. The usable 733 hosts are all the IP addresses that belong to the network, except the [all …]
|
D | nis.rst | 15 central administration of several hosts.
|
/third_party/mesa3d/.gitlab-ci/common/ |
D | init-stage1.sh | 19 [ -z "$NFS_SERVER_IP" ] || echo "$NFS_SERVER_IP caching-proxy" >> /etc/hosts
|
/third_party/skia/third_party/externals/microhttpd/doc/chapters/ |
D | tlsauthentication.inc | 372 static struct Hosts *hosts; 397 for (host = hosts; NULL != host; host = host->next) 423 The @code{hosts} list can be initialized by loading the private keys and X.509 438 host->next = hosts; 439 hosts = host;
|
/third_party/cef/libcef/common/extensions/ |
D | extensions_client.h | 32 void FilterHostPermissions(const URLPatternSet& hosts,
|
D | extensions_client.cc | 55 const URLPatternSet& hosts, in FilterHostPermissions() argument
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
D | build_macos.dart | 48 throwToolExit('"build macos" only supported on macOS hosts.');
|
D | build_fuchsia.dart | 45 throwToolExit('"build Fuchsia" only supported on Linux and MacOS hosts.');
|
D | build_windows.dart | 59 throwToolExit('"build windows" only supported on Windows hosts.');
|
D | build_linux.dart | 59 throwToolExit('"build linux" only supported on Linux hosts.');
|
/third_party/skia/third_party/externals/microhttpd/ |
D | MHD_config.h.in | 381 /* Number of bits in a file offset, on hosts where this is settable. */ 384 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ 387 /* Define for large files, on AIX-style hosts. */
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-multivhost/ |
D | README.md | 15 However if you edit /etc/hosts on your machine and add
|
/third_party/flutter/skia/infra/bots/assets/mesa_intel_driver_linux/mesa-driver-builder/ |
D | Dockerfile | 9 # Note that the hosts that use these drivers will also need the newer version of libdrm2
|
/third_party/skia/infra/bots/assets/mesa_intel_driver_linux/mesa-driver-builder/ |
D | Dockerfile | 9 # Note that the hosts that use these drivers will also need the newer version of libdrm2
|
/third_party/flutter/flutter/dev/docs/ |
D | README.md | 13 This site hosts Flutter's API documentation. Other documentation can be found at
|