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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/network/brew/
DNSBrew.cpp 33 void prefetchDNS(const String& hostname)
  /external/webkit/Source/WebCore/platform/network/curl/
DNSCurl.cpp 33 void prefetchDNS(const String& hostname)
  /external/webkit/Source/WebCore/platform/network/chromium/
DNSChromium.cpp 34 void prefetchDNS(const String& hostname)
36 PlatformBridge::prefetchDNS(hostname);
  /external/dhcpcd/
dhcpcd.conf 4 # 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
  /system/extras/tests/bionic/libc/common/
test_gethostname.c 36 char hostname[512]; local
39 ret = gethostname(hostname, sizeof(hostname));
45 printf("gethostname() returned '%s'\n", hostname);
  /libcore/luni/src/main/java/java/net/
InetSocketAddress.java 31 // Exactly one of hostname or addr should be set.
33 private final String hostname; field in class:InetSocketAddress
42 this.hostname = null;
74 this.hostname = null;
80 * hostname {@code host}. The hostname is tried to be resolved and cannot be
87 * the specified hostname to which this socket is bound.
97 InetSocketAddress(String hostname, int port, boolean needResolved) {
98 if (hostname == null || port < 0 || port > 65535) {
99 throw new IllegalArgumentException("host=" + hostname + ", port=" + port)
    [all...]
AddressCache.java 70 * Returns the cached InetAddress[] associated with 'hostname'. Returns null if nothing is known
71 * about 'hostname'. Returns a String suitable for use as an UnknownHostException detail
72 * message if 'hostname' is known not to exist.
74 public Object get(String hostname) {
75 AddressCacheEntry entry = cache.get(hostname);
86 * Associates the given 'addresses' with 'hostname'. The association will expire after a
89 public void put(String hostname, InetAddress[] addresses) {
90 cache.put(hostname, new AddressCacheEntry(addresses));
94 * Records that 'hostname' is known not to have any associated addresses. (I.e. insert a
97 public void putUnknownHost(String hostname, String detailMessage)
    [all...]
  /external/mdnsresponder/mDNSShared/
PlatformCommon.h 18 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/
DnsPrefetchHelper.cpp 27 void prefetchDNS(const String& hostname)
31 dnsPrefetchHelper.lookup(QString(hostname));
DnsPrefetchHelper.h 38 void lookup(QString hostname)
40 if (hostname.isEmpty())
46 QHostInfo::lookupHost(hostname, this, SLOT(lookedUp(QHostInfo)));
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
X11ServerData.java 16 public String hostname; field in class:X11ServerData
  /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);
  /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/chromium/net/socket/
dns_cert_provenance_checker.h 26 const std::string& hostname,
37 const std::string& hostname,
46 const std::string& hostname,
56 const std::string& hostname,
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
ServerHostKeyVerifier.java 24 * @param hostname the hostname used to create the {@link Connection} object
32 public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm, byte[] serverHostKey)
  /external/webkit/Source/WebCore/platform/network/
DNS.h 34 void prefetchDNS(const String& hostname);
  /external/chromium/net/base/
ssl_config_service_unittest.cc 10 bool IsFalseStartIncompatible(const std::string& hostname) {
12 hostname);
host_cache.h 24 // Stores the latest address list that was looked up for a hostname.
42 Key(const std::string& hostname, AddressFamily address_family,
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/
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/ganymed-ssh2/examples/
SimpleVerifier.java 24 public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm, byte[] serverHostKey)
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/
HostNameResolver.java 39 InetAddress resolve (String hostname) throws IOException;
  /external/chromium/chrome/common/remoting/
chromoting_host_info.h 18 std::string hostname; member in struct:remoting::ChromotingHostInfo
  /external/openssh/
auth-rhosts.c 55 check_rhosts_file(const char *filename, const char *hostname,
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,
205 debug2("auth_rhosts2: clientuser %s hostname %s ipaddr %s",
206 client_user, hostname, ipaddr)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKMediaCacheManager.cpp 44 void WKMediaCacheManagerClearCacheForHostname(WKMediaCacheManagerRef mediaCacheManagerRef, WKStringRef hostname)
46 toImpl(mediaCacheManagerRef)->clearCacheForHostname(toWTFString(hostname));
  /external/webkit/Source/WebKit2/WebProcess/Cookies/
WebCookieManager.messages.in 28 void DeleteCookiesForHostname(WTF::String hostname)

Completed in 1435 milliseconds

1 2 3 4 5 6 7 8 91011>>