HomeSort by relevance Sort by last modified time
    Searched refs:hostname (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webkit/WebCore/platform/network/chromium/
DNSChromium.cpp 33 void prefetchDNS(const String& hostname)
35 ChromiumBridge::prefetchDNS(hostname);
  /external/webkit/WebCore/platform/network/curl/
DNSCurl.cpp 33 void prefetchDNS(const String& hostname)
  /external/chromium/net/socket/
ssl_client_socket_nss_factory.cc 18 const std::string& hostname,
20 return new SSLClientSocketNSS(transport_socket, hostname, ssl_config);
client_socket_factory.cc 24 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);
client_socket_factory.h 20 const std::string& hostname,
26 const std::string& hostname,
40 const std::string& hostname,
  /external/webkit/WebCore/platform/network/
DNS.h 33 void prefetchDNS(const String& hostname);
  /system/extras/tests/bionic/libc/common/
test_gethostname.c 9 char hostname[512]; local
12 ret = gethostname(hostname, sizeof(hostname));
18 printf("gethostname() returned '%s'\n", hostname);
test_gethostbyname.c 10 char* hostname = "localhost"; local
15 hostname = argv[1];
17 hent = gethostbyname(hostname);
19 printf("gethostbyname(%s) returned NULL !!\n", hostname);
22 printf( "gethostbyname(%s) returned:\n", hostname);
  /external/webkit/WebCore/platform/network/qt/
DnsPrefetchHelper.cpp 27 void prefetchDNS(const String& hostname)
31 dnsPrefetchHelper.lookup(QString(hostname));
DnsPrefetchHelper.h 38 void lookup(QString hostname)
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)));
  /libcore/luni/src/main/java/javax/net/ssl/
HostnameVerifier.java 21 * The interface to be used to provide hostname verification functionality.
24 * during a handshake if the URL's hostname does not match the peer's
25 * identification hostname.
29 * Verifies that the specified hostname is allowed within the specified SSL
32 * @param hostname
33 * the hostname.
36 * @return {@code true} if the specified hostname is allowed, otherwise
39 boolean verify(String hostname, SSLSession session);
  /libcore/luni/src/main/java/java/net/
InetSocketAddress.java 31 private String hostname; field in class:InetSocketAddress
69 hostname = addr.getHostName();
75 * hostname {@code host}. The hostname is tried to be resolved and cannot be
82 * the specified hostname to which this socket is bound.
96 InetSocketAddress(String hostname, int port, boolean needResolved) {
97 if (hostname == null || port < 0 || port > 65535) {
98 throw new IllegalArgumentException("host=" + hostname + ", port=" + port);
100 this.hostname = hostname;
    [all...]
AddressCache.java 80 * Returns the cached addresses associated with 'hostname'. Returns null if nothing is known
81 * about 'hostname'. Returns an empty array if 'hostname' is known not to exist.
83 public InetAddress[] get(String hostname) {
86 entry = map.get(hostname);
98 * Associates the given 'addresses' with 'hostname'. The association will expire after a
101 public void put(String hostname, InetAddress[] addresses) {
117 map.put(hostname, new AddressCacheEntry(addresses, expiryNanos));
122 * Records that 'hostname' is known not to have any associated addresses. (I.e. insert a
125 public void putUnknownHost(String hostname) {
    [all...]
  /external/nist-sip/java/gov/nist/core/
Host.java 43 * Stores hostname.
68 protected static final int HOSTNAME = 1;
72 /** hostName field
74 protected String hostname; field in class:Host
86 addressType = HOSTNAME;
94 public Host(String hostName) throws IllegalArgumentException {
95 if (hostName == null)
101 setHost(hostName, IPV4ADDRESS);
124 if (addressType == IPV6ADDRESS && !isIPv6Reference(hostname)) {
125 buffer.append('[').append(hostname).append(']')
    [all...]
  /external/webkit/WebCore/platform/network/soup/
DNSSoup.cpp 36 void prefetchDNS(const String& hostname)
39 String uri = "http://"+hostname;
  /external/apache-http/src/org/apache/http/
HttpHost.java 56 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) {
82 if (hostname == null) {
85 this.hostname = hostname;
86 this.lcHostname = hostname.toLowerCase(Locale.ENGLISH);
98 * @param hostname the hostname (IP or DNS name
    [all...]
  /external/apache-http/src/org/apache/http/conn/scheme/
HostNameResolver.java 39 InetAddress resolve (String hostname) throws IOException;
  /external/chromium/net/base/
host_cache.h 22 // Stores the latest address list that was looked up for a hostname.
40 Key(const std::string& hostname, AddressFamily address_family)
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 (presumably in lowercase canonicalized format) t
    [all...]
cert_verifier.h 33 // Verifies the given certificate against the given hostname. Returns OK if
57 int Verify(X509Certificate* cert, const std::string& hostname,
cert_verifier.cc 24 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);
  /development/tools/axl/
udpEater.py 33 hostname = socket.gethostname()
34 ip = socket.gethostbyname(hostname)
udpServer.py 13 # hostname = socket.gethostname()
14 hostname = "localhost"
15 ip = socket.gethostbyname(hostname)
  /external/dnsmasq/contrib/port-forward/
dnsmasq-portforward 23 hostname=${4}
34 hostname=${DNSMASQ_OLD_HOSTNAME}
42 if [ ${hostname} ]; then
43 ports=$(sed -n -e "/^${hostname}\ .*/ s/^.* //p" ${PORTSFILE})
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 98 mHostnameField = (EditText)findViewById(R.id.hostname);
116 String hostname = null; local
120 hostname = Proxy.getDefaultHost();
124 hostname = Proxy.getHost(this);
128 if (hostname == null) {
129 hostname = "";
132 mHostnameField.setText(hostname);
151 * validate syntax of hostname and port entries
154 int validate(String hostname, String port) {
155 Matcher match = HOSTNAME_PATTERN.matcher(hostname);
185 String hostname = mHostnameField.getText().toString().trim(); local
    [all...]
  /external/webkit/WebCore/platform/network/cf/
DNSCFNet.cpp 124 void DNSResolveQueue::resolve(const String& hostname)
128 RetainPtr<CFStringRef> hostnameCF(AdoptCF, hostname.createCFString());
147 void prefetchDNS(const String& hostname)
150 if (hostname.isEmpty())
152 DNSResolveQueue::shared().add(hostname);

Completed in 842 milliseconds

1 2 3 4 5 6 7 8 9