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

12345678910

/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/chromium_org/sync/util/
H A Dget_session_name_linux.cc16 char hostname[HOST_NAME_MAX]; local
17 if (gethostname(hostname, HOST_NAME_MAX) == 0) // Success.
18 return hostname;
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DDNS.cpp35 void prefetchDNS(const String& hostname) argument
42 prescientNetworking->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/chromium_org/chrome/browser/apps/
H A Dad_view_browsertest.cc143 std::string hostname = url.host(); local
145 content::URLRequestPrepackagedInterceptor interceptor(scheme, hostname);
/external/chromium_org/net/quic/crypto/
H A Dproof_source_chromium.cc15 bool ProofSourceChromium::GetProof(const string& hostname, argument
H A Dchannel_id_test.cc227 const string hostname = "foo.example.com"; local
229 ASSERT_TRUE(signer->Sign(hostname, signed_data, &key, &signature));
231 EXPECT_EQ(key, signer->GetKeyForHostname(hostname));
/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/okhttp/src/test/java/com/squareup/okhttp/internal/
H A DRecordingHostnameVerifier.java26 public boolean verify(String hostname, SSLSession session) { argument
27 calls.add("verify " + hostname);
/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/chromium_org/chrome/renderer/net/
H A Dprescient_networking_dispatcher.cc54 const blink::WebString& hostname) {
55 if (hostname.isEmpty())
58 std::string hostname_utf8 = UTF16ToUTF8(hostname);
53 prefetchDNS( const blink::WebString& hostname) argument
/external/chromium_org/net/dns/
H A Dhost_cache_unittest.cc20 // Builds a key for |hostname|, defaulting the address family to unspecified.
21 HostCache::Key Key(const std::string& hostname) { argument
22 return HostCache::Key(hostname, ADDRESS_FAMILY_UNSPECIFIED, 0);
178 // Tests that the same hostname can be duplicated in the cache, so long as
211 // Tests that the same hostname can be duplicated in the cache, so long as
H A Dhost_cache.h25 // 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
56 return hostname < other.hostname;
59 std::string hostname; member in struct:net::HostCache::Key
115 // Map from hostname (presumably in lowercase canonicalized format) to
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPrescientNetworking.h58 virtual void prefetchDNS(const WebString& hostname) { } argument
/external/chromium_org/webkit/common/database/
H A Ddatabase_identifier.h33 std::string hostname() const { return hostname_; } function in class:webkit_database::DatabaseIdentifier
40 const std::string& hostname,
/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/chromium_org/net/cert/
H A Dcert_verify_proc_android.cc89 const std::string& hostname,
94 if (!cert->VerifyNameMatch(hostname,
87 VerifyInternal( X509Certificate* cert, const std::string& hostname, int flags, CRLSet* crl_set, const CertificateList& additional_trust_anchors, CertVerifyResult* verify_result) argument
H A Dsingle_request_cert_verifier.cc29 const std::string& hostname,
43 cert, hostname, flags, crl_set, verify_result,
28 Verify(X509Certificate* cert, const std::string& hostname, int flags, CRLSet* crl_set, CertVerifyResult* verify_result, const CompletionCallback& callback, const BoundNetLog& net_log) argument

Completed in 752 milliseconds

12345678910