Searched refs:hostname (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/network/brew/
H A DDNSBrew.cpp33 void prefetchDNS(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/curl/
H A DDNSCurl.cpp33 void prefetchDNS(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/chromium/
H A DDNSChromium.cpp34 void prefetchDNS(const String& hostname) argument
36 PlatformBridge::prefetchDNS(hostname);
/external/dhcpcd/
H A Ddhcpcd.conf4 # Inform the DHCP server of our hostname for DDNS.
5 hostname
21 # A hook script is provided to lookup the hostname if not set by the DHCP
23 nohook lookup-hostname
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
H A Dset-href-attribute-hostname.js1 description('Test setting the hostname attribute of the URL in HTMLAnchorElement.');
7 a.hostname = "www.otherdomain.com";
12 debug("Extra slashes before hostname");
14 a.hostname = "//www.otherdomain.com";
21 debug("Set hostname to URL with foo: protocol");
23 a.hostname = "www.otherdomain.com";
27 // Firefox 3.5.2 allows setting the hostname to null, which is wrong per
29 debug("Set hostname to null");
31 a.hostname = null;
37 debug("Set hostname t
[all...]
/external/mdnsresponder/mDNSShared/
H A DPlatformCommon.h18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
/external/webkit/Source/WebCore/platform/network/qt/
H A DDnsPrefetchHelper.cpp27 void prefetchDNS(const String& hostname) argument
31 dnsPrefetchHelper.lookup(QString(hostname));
H A DDnsPrefetchHelper.h38 void lookup(QString hostname) argument
40 if (hostname.isEmpty())
46 QHostInfo::lookupHost(hostname, this, SLOT(lookedUp(QHostInfo)));
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DX11ServerData.java16 public String hostname; field in class:X11ServerData
/external/nist-sip/java/gov/nist/core/
H A DHost.java43 * Stores hostname.
74 protected String hostname; field in class:Host
124 if (addressType == IPV6ADDRESS && !isIPv6Reference(hostname)) {
125 buffer.append('[').append(hostname).append(']');
127 buffer.append(hostname);
145 return otherHost.hostname.equals(hostname);
153 return hostname;
160 return hostname;
170 if (hostname
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DServerHostKeyVerifier.java24 * @param hostname the hostname used to create the {@link Connection} object
32 public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm, byte[] serverHostKey) argument
/external/webkit/Source/WebCore/platform/network/
H A DDNS.h34 void prefetchDNS(const String& hostname);
/external/chromium/net/base/
H A Dssl_config_service_unittest.cc10 bool IsFalseStartIncompatible(const std::string& hostname) { argument
12 hostname);
H A Dcert_verifier.h76 // Verifies the given certificate against the given hostname. Returns OK if
102 const std::string& hostname,
127 // |flags| is compared before |cert_fingerprint| and |hostname| under
133 hostname == other.hostname);
137 // |flags| is compared before |cert_fingerprint| and |hostname| under
146 return hostname < other.hostname;
150 std::string hostname; member in struct:net::CertVerifier::RequestParams
155 const std::string& hostname,
[all...]
H A Dhost_cache.h24 // Stores the latest address list that was looked up for a hostname.
42 Key(const std::string& hostname, AddressFamily address_family, argument
44 : hostname(hostname),
50 // |hostname| under assumption that integer comparisons are faster than
54 other.hostname == hostname);
59 // |hostname| under assumption that integer comparisons are faster than
65 return hostname < other.hostname;
68 std::string hostname; member in struct:net::HostCache::Key
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpHost.java56 protected final String hostname; field in class:HttpHost
73 * @param hostname the hostname (IP or DNS name)
80 public HttpHost(final String hostname, int port, final String scheme) { argument
82 if (hostname == null) {
85 this.hostname = hostname;
86 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH);
98 * @param hostname the hostname (I
102 HttpHost(final String hostname, int port) argument
111 HttpHost(final String hostname) argument
[all...]
/external/ganymed-ssh2/examples/
H A DSimpleVerifier.java24 public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm, byte[] serverHostKey) argument
27 int result = database.verifyHostkey(hostname, serverHostKeyAlgorithm, serverHostKey);
42 database.addHostkey(new String[] { hostname }, serverHostKeyAlgorithm, serverHostKey);
/external/apache-http/src/org/apache/http/conn/scheme/
H A DHostNameResolver.java39 InetAddress resolve (String hostname) throws IOException; argument
/external/chromium/net/socket/
H A Ddns_cert_provenance_checker.h26 const std::string& hostname,
37 const std::string& hostname,
46 const std::string& hostname,
56 const std::string& hostname,
/external/openssh/
H A Dauth-rhosts.c55 check_rhosts_file(const char *filename, const char *hostname, argument
149 if (!innetgr(host + 1, hostname, NULL, NULL) &&
152 } else if (strcasecmp(host, hostname) && strcmp(host, ipaddr) != 0)
153 continue; /* Different hostname. */
189 const char *hostname, *ipaddr; local
191 hostname = get_canonical_hostname(options.use_dns);
193 return auth_rhosts2(pw, client_user, hostname, ipaddr);
197 auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname, argument
205 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
206 client_user, hostname, ipadd
317 auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname, const char *ipaddr) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKMediaCacheManager.cpp44 void WKMediaCacheManagerClearCacheForHostname(WKMediaCacheManagerRef mediaCacheManagerRef, WKStringRef hostname) argument
46 toImpl(mediaCacheManagerRef)->clearCacheForHostname(toWTFString(hostname));
/external/webkit/Source/WebKit2/WebProcess/Cookies/
H A DWebCookieManager.messages.in28 void DeleteCookiesForHostname(WTF::String hostname)
/external/dhcpcd/dhcpcd-hooks/
H A DMakefile7 SCRIPTS+= 10-mtu 20-resolv.conf 29-lookup-hostname 30-hostname
/external/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward23 hostname=${4}
34 hostname=${DNSMASQ_OLD_HOSTNAME}
42 if [ ${hostname} ]; then
43 ports=$(sed -n -e "/^${hostname}\ .*/ s/^.* //p" ${PORTSFILE})
/external/chromium/chrome/common/remoting/
H A Dchromoting_host_info.h18 std::string hostname; member in struct:remoting::ChromotingHostInfo

Completed in 873 milliseconds

1234567891011>>