Home
last modified time | relevance | path

Searched refs:hosts (Results 1 – 25 of 169) sorted by relevance

1234567

/third_party/python/Lib/
Dnetrc.py27 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]
/third_party/node/deps/openssl/openssl/crypto/x509/
Dx509_vpm.c54 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 …]
/third_party/openssl/crypto/x509/
Dx509_vpm.c54 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 …]
/third_party/python/Lib/test/
Dtest_netrc.py24 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'],
Dtest_ipaddress.py1412 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/node/deps/cares/src/lib/
Dares__hosts_file.c98 ares__llist_t *hosts; member
263 ares__llist_destroy(entry->hosts); in ares__hosts_entry_destroy()
344 while ((node = ares__llist_node_first(entry->hosts)) != NULL) { in ares__hosts_file_merge_entry()
352 ares__llist_node_move_parent_last(node, existing->hosts); in ares__hosts_file_merge_entry()
375 for (node = ares__llist_node_first(entry->hosts); node != NULL; in ares__hosts_file_match()
388 static ares_status_t ares__hosts_file_add(ares_hosts_file_t *hosts, in ares__hosts_file_add() argument
400 num_hostnames = ares__llist_len(entry->hosts); in ares__hosts_file_add()
402 matchtype = ares__hosts_file_match(hosts, entry, &match); in ares__hosts_file_add()
405 status = ares__hosts_file_merge_entry(hosts, match, entry, matchtype); in ares__hosts_file_add()
417 if (!ares__htable_strvp_get(hosts->iphash, ipaddr, NULL)) { in ares__hosts_file_add()
[all …]
/third_party/node/deps/npm/node_modules/hosted-git-info/lib/
Dhosts.js37 const hosts = {} constant
38 hosts.github = {
74 hosts.bitbucket = {
102 hosts.gitlab = {
133 hosts.gist = {
191 hosts.sourcehut = {
223 for (const [name, host] of Object.entries(hosts)) {
224 hosts[name] = Object.assign({}, defaults, host)
227 module.exports = hosts
Dindex.js4 const hosts = require('./hosts.js') constant
175 for (const [name, host] of Object.entries(hosts)) {
/third_party/node/test/parallel/
Dtest-net-autoselectfamily-commandline-option.js26 const hosts = replies
31 return cb(null, hosts);
34 return cb(null, hosts[0].address, hosts[0].family);
Dtest-net-autoselectfamily-ipv4first.js24 const hosts = replies
28 return cb(null, hosts);
31 return cb(null, hosts[0].address, hosts[0].family);
Dtest-http-autoselectfamily.js25 const hosts = replies
30 return cb(null, hosts);
33 return cb(null, hosts[0].address, hosts[0].family);
Dtest-net-autoselectfamilydefault.js27 const hosts = replies
32 return cb(null, hosts);
35 return cb(null, hosts[0].address, hosts[0].family);
Dtest-https-autoselectfamily.js39 const hosts = replies
44 return cb(null, hosts);
47 return cb(null, hosts[0].address, hosts[0].family);
Dtest-net-autoselectfamily.js27 const hosts = replies
32 return cb(null, hosts);
35 return cb(null, hosts[0].address, hosts[0].family);
/third_party/curl/docs/libcurl/opts/
DCURLOPT_UNRESTRICTED_AUTH.md17 CURLOPT_UNRESTRICTED_AUTH - send credentials to other hosts too
37 to other hosts than the one used for the initial URL.
47 again and again as the following hosts can keep redirecting to new hosts.
DCURLOPT_USERPWD.md47 requests to possibly different hosts. libcurl only sends this user and
48 password information to hosts using the initial hostname (unless
50 hosts, it does not send the user and password to those. This is enforced to
DCURLMOPT_PIPELINING_SITE_BL.md22 char **hosts);
29 Pass a **hosts** array of char *, ending with a NULL entry. This is a list
DCURLOPT_SSH_KNOWNHOSTS.md14 CURLOPT_SSH_KNOWNHOSTS - filename holding the SSH known hosts
29 accepts connections with hosts that are known and present in that file, with a
DCURLOPT_NOPROXY.md15 CURLOPT_NOPROXY - disable proxy use for specific hosts
30 which matches all hosts, and effectively disables the proxy. Each name in this
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/
Dtest_https_sni.c55 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/curl/docs/cmdline-opts/
Dnoproxy.md6 Help: List of hosts which do not use proxy
18 Comma-separated list of hosts for which not to use a proxy, if one is
20 hosts, and effectively disables the proxy. Each name in this list is matched
Dlocation-trusted.md5 Help: Like --location, and send auth to other hosts
18 Like --location, but allows sending the name + password to all hosts that the
/third_party/cups/
Dbackport-CVE-2023-34241.patch58 "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/
DREADME.aseqnet10 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/
Dipaddress.rst18 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 …]

1234567