Searched defs:hostname (Results 1 - 25 of 154) sorted by relevance

1234567

/external/chromium/net/base/
H A Dssl_config_service_unittest.cc10 bool IsFalseStartIncompatible(const std::string& hostname) { argument
12 hostname);
H A Dx509_certificate_openssl_android.cc15 int X509Certificate::Verify(const std::string& hostname, argument
48 lib->VerifyX509CertChain(cert_bytes, hostname, "RSA");
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...]
H A Dhost_cache_unittest.cc22 // Builds a key for |hostname|, defaulting the address family to unspecified.
23 HostCache::Key Key(const std::string& hostname) { argument
24 return HostCache::Key(hostname, ADDRESS_FAMILY_UNSPECIFIED, 0);
182 std::string hostname = base::StringPrintf("valid%d", i); local
183 cache.Set(Key(hostname), OK, AddressList(), now);
189 std::string hostname = base::StringPrintf("expired%d", i); local
191 cache.Set(Key(hostname), OK, AddressList(), t);
197 std::string hostname = base::StringPrintf("negative%d", i); local
198 cache.Set(Key(hostname), ERR_NAME_NOT_RESOLVED, AddressList(), now);
272 // Tests that the same hostname ca
[all...]
/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/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/webkit/Source/WebCore/platform/network/chromium/
H A DDNSChromium.cpp34 void prefetchDNS(const String& hostname) argument
36 PlatformBridge::prefetchDNS(hostname);
/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/chrome/common/remoting/
H A Dchromoting_host_info.h18 std::string hostname; member in struct:remoting::ChromotingHostInfo
/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DX11ServerData.java16 public String hostname; field in class:X11ServerData
/external/webkit/Source/WebCore/workers/
H A DWorkerLocation.cpp52 String WorkerLocation::hostname() const function in class:WebCore::WorkerLocation
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKMediaCacheManager.cpp44 void WKMediaCacheManagerClearCacheForHostname(WKMediaCacheManagerRef mediaCacheManagerRef, WKStringRef hostname) argument
46 toImpl(mediaCacheManagerRef)->clearCacheForHostname(toWTFString(hostname));
H A DWKCookieManager.cpp51 void WKCookieManagerDeleteCookiesForHostname(WKCookieManagerRef cookieManagerRef, WKStringRef hostname) argument
53 toImpl(cookieManagerRef)->deleteCookiesForHostname(toImpl(hostname)->string());
/external/chromium/chrome/browser/sync/util/
H A Dcryptographer.h24 std::string hostname; member in struct:browser_sync::KeyParams
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketaddress.h49 // the hostname will be immediately resolved to an IP (which may block for
53 SocketAddress(const std::string& hostname, int port);
64 // Determines if this is a nil address (empty hostname, any IP, null port)
73 // Changes the IP of this address to the given one, and clears the hostname.
76 // Changes the hostname of this address to the given one.
78 void SetIP(const std::string& hostname);
80 // Sets the IP address while retaining the hostname. Useful for bypassing
87 // Returns the hostname
88 const std::string& hostname() const { return hostname_; } function in class:talk_base::SocketAddress
102 // Returns hostname
[all...]
/external/javassist/src/main/javassist/
H A DURLClassPath.java29 protected String hostname; field in class:URLClassPath
61 hostname = host;
68 return hostname + ":" + port + directory;
90 return fetchClass0(hostname, port, jarname);
/external/webkit/Source/WebCore/platform/efl/
H A DCookieJarEfl.cpp60 void deleteCookiesForHostname(const String& hostname) argument
/external/webkit/Source/WebCore/platform/network/android/
H A DCookieJarAndroid.cpp60 void deleteCookiesForHostname(const String& hostname) argument
/external/webkit/Source/WebKit2/WebProcess/MediaCache/
H A DWebMediaCacheManager.cpp67 void WebMediaCacheManager::clearCacheForHostname(const String& hostname) argument
72 HTMLMediaElement::clearMediaCacheForSite(hostname);
/external/openssh/
H A Daudit-linux.c44 const char *hostname, const char *ip, const char *ttyn, int success)
58 username == NULL ? uid : -1, hostname, ip, ttyn, success);
88 if (linux_audit_record_event(li->uid, NULL, li->hostname,
43 linux_audit_record_event(int uid, const char *username, const char *hostname, const char *ip, const char *ttyn, int success) argument
H A Dsshlogin.c78 strlcpy(buf, li.hostname, bufsize);
90 char *time_string, hostname[MAXHOSTNAMELEN] = "", buf[512]; local
103 last_login_time = get_last_login_time(uid, user, hostname,
104 sizeof(hostname));
109 if (strcmp(hostname, "") == 0)
114 time_string, hostname);

Completed in 846 milliseconds

1234567