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

1234567

/external/webkit/WebCore/platform/network/chromium/
H A DDNSChromium.cpp33 void prefetchDNS(const String& hostname) argument
35 ChromiumBridge::prefetchDNS(hostname);
/external/webkit/WebCore/platform/network/curl/
H A DDNSCurl.cpp33 void prefetchDNS(const String& hostname) argument
/external/chromium/net/socket/
H A Dssl_client_socket_nss_factory.cc18 const std::string& hostname,
20 return new SSLClientSocketNSS(transport_socket, hostname, ssl_config);
16 SSLClientSocketNSSFactory( ClientSocket* transport_socket, const std::string& hostname, const SSLConfig& ssl_config) argument
H A Dclient_socket_factory.cc24 const std::string& hostname,
27 return new SSLClientSocketWin(transport_socket, hostname, ssl_config);
29 return new SSLClientSocketNSS(transport_socket, hostname, ssl_config);
31 return new SSLClientSocketMac(transport_socket, hostname, ssl_config);
50 const std::string& hostname,
52 return g_ssl_factory(transport_socket, hostname, ssl_config);
22 DefaultSSLClientSocketFactory( ClientSocket* transport_socket, const std::string& hostname, const SSLConfig& ssl_config) argument
48 CreateSSLClientSocket( ClientSocket* transport_socket, const std::string& hostname, const SSLConfig& ssl_config) argument
H A Dclient_socket_factory.h20 const std::string& hostname,
26 const std::string& hostname,
40 const std::string& hostname,
H A Dsocks5_client_socket_unittest.cc36 const std::string& hostname,
71 const std::string& hostname,
84 HostResolver::RequestInfo(hostname, port));
157 const std::string hostname = "my-host-name"; local
166 request.push_back(hostname.size());
167 request.append(hostname);
180 user_sock_.reset(BuildMockSocket(data_reads, data_writes, hostname, 80));
204 // the transport socket first) because the hostname is too long.
211 const std::string hostname = "www.google.com"; local
235 user_sock_.reset(BuildMockSocket(data_reads, data_writes, hostname, 8
68 BuildMockSocket( MockRead reads[], MockWrite writes[], const std::string& hostname, int port) argument
[all...]
/external/webkit/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())
45 QTime* entryTime = lookupCache.object(hostname);
48 lookupCache.remove(hostname);
53 lookupCache.insert(hostname, tmpTime);
55 QHostInfo::lookupHost(hostname, this, SLOT(lookedUp(QHostInfo)));
/external/webkit/WebCore/platform/network/
H A DDNS.h33 void prefetchDNS(const String& hostname);
/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...]
H A DHostNameParser.java175 String hostname;
179 hostname = ipv6Reference();
187 hostname
192 //IPv4 address or hostname
196 hostname = lexer.getBuffer().substring(startPtr, lexer.getPtr());
199 if (hostname.length() == 0)
204 return new Host(hostname);
307 " Illegal character in hostname:" + lexer.lookAhead(0),
/external/webkit/WebCore/platform/network/soup/
H A DDNSSoup.cpp36 void prefetchDNS(const String& hostname) argument
39 String uri = "http://"+hostname;
/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/apache-http/src/org/apache/http/conn/scheme/
H A DHostNameResolver.java39 InetAddress resolve (String hostname) throws IOException; argument
/external/chromium/net/base/
H A Dhost_cache.h22 // Stores the latest address list that was looked up for a hostname.
40 Key(const std::string& hostname, AddressFamily address_family) argument
41 : hostname(hostname), address_family(address_family) {}
44 return other.hostname == hostname &&
50 return hostname < other.hostname;
54 std::string hostname; member in struct:net::HostCache::Key
132 // Map from hostname (presumabl
[all...]
H A Dcert_verifier.cc24 const std::string& hostname,
29 hostname_(hostname),
128 const std::string& hostname,
137 int rv = cert->Verify(hostname, flags, &result);
142 request_ = new Request(this, cert, hostname, flags, verify_result, callback);
22 Request(CertVerifier* verifier, X509Certificate* cert, const std::string& hostname, int flags, CertVerifyResult* verify_result, CompletionCallback* callback) argument
127 Verify(X509Certificate* cert, const std::string& hostname, int flags, CertVerifyResult* verify_result, CompletionCallback* callback) argument
H A Dcert_verifier.h33 // Verifies the given certificate against the given hostname. Returns OK if
57 int Verify(X509Certificate* cert, const std::string& 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/webkit/WebCore/platform/network/cf/
H A DDNSCFNet.cpp124 void DNSResolveQueue::resolve(const String& hostname) argument
128 RetainPtr<CFStringRef> hostnameCF(AdoptCF, hostname.createCFString());
147 void prefetchDNS(const String& hostname) argument
150 if (hostname.isEmpty())
152 DNSResolveQueue::shared().add(hostname);
/external/bluetooth/glib/tests/
H A Duri-test.c40 char *hostname; member in struct:__anon661
186 to_uri_tests[i].hostname,
233 gchar *hostname; local
240 &hostname,
291 if (hostname != NULL)
293 g_print ("\ng_filename_from_uri() test %d failed, expected no hostname, got: %s\n",
294 i, hostname);
298 else if (hostname == NULL ||
299 strcmp (hostname, from_uri_tests[i].expected_hostname) != 0)
301 g_print ("\ng_filename_from_uri() test %d failed, expected hostname
355 gchar *uri, *hostname, *res; local
[all...]
/external/dhcpcd/dhcpcd-hooks/
H A DMakefile3 SYSTEMSCRIPTS= 01-test 10-mtu 20-resolv.conf 30-hostname
/external/dnsmasq/src/
H A Dhelper.c113 char *p, *action_str, *hostname = NULL; local
255 hostname = (char *)buf;
256 hostname[data.hostname_len - 1] = 0;
257 if (!legal_hostname(hostname))
258 hostname = NULL;
259 else if ((dot = strchr(hostname, '.')))
266 if (data.action == ACTION_OLD_HOSTNAME && hostname)
268 my_setenv("DNSMASQ_OLD_HOSTNAME", hostname, &err);
269 hostname = NULL;
282 action_str, daemon->dhcp_buff, inet_ntoa(data.addr), hostname, (cha
298 queue_script(int action, struct dhcp_lease *lease, char *hostname, time_t now) argument
[all...]
/external/chromium/net/url_request/
H A Durl_request_filter.cc28 const std::string& hostname, URLRequest::ProtocolFactory* factory) {
29 hostname_handler_map_[make_pair(scheme, hostname)] = factory;
49 const std::string& hostname) {
51 hostname_handler_map_.find(make_pair(scheme, hostname));
70 // Check to see if this URL is masked by a hostname handler.
115 // Check the hostname map first.
116 const std::string& hostname = request->url().host(); local
119 hostname_handler_map_.find(make_pair(scheme, hostname));
124 // Not in the hostname map, check the url map.
27 AddHostnameHandler(const std::string& scheme, const std::string& hostname, URLRequest::ProtocolFactory* factory) argument
48 RemoveHostnameHandler(const std::string& scheme, const std::string& hostname) argument
/external/dropbear/
H A Dfake-rfc2553.c150 getaddrinfo(const char *hostname, const char *servname, argument
175 if (hostname && inet_aton(hostname, &in) != 0)
183 if (!hostname) {
190 if (inet_aton(hostname, &in)) {
201 hp = gethostbyname(hostname);
H A Dloginrec.h135 char hostname[LINFO_HOSTSIZE]; /* remote hostname */ member in struct:logininfo
154 const char *hostname, const char *line);
159 const char *hostname, const char *line);

Completed in 303 milliseconds

1234567