/external/chromium_org/net/base/ |
host_port_pair.cc | 17 HostPortPair::HostPortPair() : port_(0) {} 18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) 22 HostPortPair HostPortPair::FromURL(const GURL& url) { 23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort()); 27 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) { 28 return HostPortPair(ipe.ToStringWithoutPort(), ipe.port()) [all...] |
host_port_pair.h | 18 class NET_EXPORT HostPortPair { 20 HostPortPair(); 22 HostPortPair(const std::string& in_host, uint16 in_port); 24 // Creates a HostPortPair for the origin of |url|. 25 static HostPortPair FromURL(const GURL& url); 27 // Creates a HostPortPair from an IPEndPoint. 28 static HostPortPair FromIPEndPoint(const IPEndPoint& ipe); 30 // Creates a HostPortPair from a string formatted in same manner as 32 static HostPortPair FromString(const std::string& str); 36 bool operator<(const HostPortPair& other) const [all...] |
host_port_pair_unittest.cc | 32 HostPortPair foo("foo.com", 10); 35 HostPortPair bar = HostPortPair::FromString(foo_str); 40 HostPortPair foo = HostPortPair::FromString("foo.com:2:3"); 44 HostPortPair bar = HostPortPair::FromString("bar.com:two"); 50 HostPortPair foo; 52 foo = HostPortPair::FromString("foo.com:8080"); 58 HostPortPair foo(tests[index].host, tests[index].port) [all...] |
host_mapping_rules.h | 15 class HostPortPair; 24 bool RewriteHost(HostPortPair* host_port) const;
|
host_mapping_rules_unittest.cc | 19 HostPortPair host_port("test", 1234); 24 host_port = HostPortPair("chrome.net", 80); 29 host_port = HostPortPair("crack.com", 80); 34 host_port = HostPortPair("wtf.foo.com", 666); 46 HostPortPair host_port("test.com", 1234); 52 host_port = HostPortPair("crack.com", 80); 58 host_port = HostPortPair("wtf.com", 443); 64 host_port = HostPortPair("wtf.foo.com", 443);
|
/external/chromium_org/net/http/ |
http_server_properties_impl.h | 53 const net::HostPortPair& host_port_pair); 63 std::string GetCanonicalSuffix(const net::HostPortPair& server); 76 virtual bool SupportsSpdy(const HostPortPair& server) OVERRIDE; 79 virtual void SetSupportsSpdy(const HostPortPair& server, 83 virtual bool HasAlternateProtocol(const HostPortPair& server) OVERRIDE; 88 const HostPortPair& server) OVERRIDE; 92 const HostPortPair& server, 97 virtual void SetBrokenAlternateProtocol(const HostPortPair& server) OVERRIDE; 101 const HostPortPair& server) OVERRIDE; 104 virtual void ConfirmAlternateProtocol(const HostPortPair& server) OVERRIDE [all...] |
http_server_properties.h | 107 HostPortPair, PortAlternateProtocolPair> AlternateProtocolMap; 108 typedef base::MRUCache<HostPortPair, SettingsMap> SpdySettingsMap; 134 virtual bool SupportsSpdy(const HostPortPair& server) = 0; 138 virtual void SetSupportsSpdy(const HostPortPair& server, 142 virtual bool HasAlternateProtocol(const HostPortPair& server) = 0; 147 const HostPortPair& server) = 0; 150 virtual void SetAlternateProtocol(const HostPortPair& server, 155 virtual void SetBrokenAlternateProtocol(const HostPortPair& server) = 0; 159 const HostPortPair& server) = 0; 162 virtual void ConfirmAlternateProtocol(const HostPortPair& server) = 0 [all...] |
/external/chromium_org/jingle/glue/ |
resolving_client_socket_factory.h | 12 class HostPortPair; 26 // Method to create a transport socket using a HostPortPair. 28 const net::HostPortPair& host_and_port) = 0; 32 const net::HostPortPair& host_and_port) = 0;
|
/external/chromium_org/net/quic/ |
quic_server_id_test.cc | 16 HostPortPair google_host_port_pair("google.com", 10); 40 QuicServerId a_10_http(HostPortPair("a.com", 10), false, 42 QuicServerId a_10_https(HostPortPair("a.com", 10), true, 44 QuicServerId a_11_http(HostPortPair("a.com", 11), false, 46 QuicServerId a_11_https(HostPortPair("a.com", 11), true, 48 QuicServerId b_10_http(HostPortPair("b.com", 10), false, 50 QuicServerId b_10_https(HostPortPair("b.com", 10), true, 52 QuicServerId b_11_http(HostPortPair("b.com", 11), false, 54 QuicServerId b_11_https(HostPortPair("b.com", 11), true, 57 QuicServerId a_10_http_private(HostPortPair("a.com", 10), false [all...] |
port_suggester.h | 15 class HostPortPair; 26 PortSuggester(const HostPortPair& server, uint64 seed);
|
port_suggester_unittest.cc | 32 new PortSuggester(HostPortPair("www.example.com", 443), entropy_); 45 new PortSuggester(HostPortPair("www.example.com", 443), entropy_); 63 new PortSuggester(HostPortPair("www.example.com", 80), entropy_); 78 new PortSuggester(HostPortPair("www.example.com", 443), entropy_); 80 new PortSuggester(HostPortPair("www.example.com", 443), entropy_); 92 new PortSuggester(HostPortPair("www.example.com", 80), entropy_), 93 new PortSuggester(HostPortPair("www.example.ORG", 80), entropy_), 94 new PortSuggester(HostPortPair("www.example.com", 443), entropy_), 95 new PortSuggester(HostPortPair("www.example.com", 80), entropy_ + 123456),
|
/external/chromium_org/net/socket/ |
mock_client_socket_pool_manager.h | 22 void SetSocketPoolForSOCKSProxy(const HostPortPair& socks_proxy, 24 void SetSocketPoolForHTTPProxy(const HostPortPair& http_proxy, 26 void SetSocketPoolForSSLWithProxy(const HostPortPair& proxy_server, 35 const HostPortPair& socks_proxy) OVERRIDE; 37 const HostPortPair& http_proxy) OVERRIDE; 39 const HostPortPair& proxy_server) OVERRIDE; 43 typedef internal::OwnedPoolMap<HostPortPair, TransportClientSocketPool*> 45 typedef internal::OwnedPoolMap<HostPortPair, SOCKSClientSocketPool*> 47 typedef internal::OwnedPoolMap<HostPortPair, HttpProxyClientSocketPool*> 49 typedef internal::OwnedPoolMap<HostPortPair, SSLClientSocketPool* [all...] |
socket_net_log_params.h | 13 class HostPortPair; 20 // Creates a NetLog callback for a HostPortPair. 23 const HostPortPair* host_and_port);
|
mock_client_socket_pool_manager.cc | 28 const HostPortPair& socks_proxy, 34 const HostPortPair& http_proxy, 40 const HostPortPair& proxy_server, 63 const HostPortPair& socks_proxy) { 72 const HostPortPair& http_proxy) { 81 const HostPortPair& proxy_server) {
|
/external/chromium_org/net/ssl/ |
ssl_client_auth_cache.h | 38 bool Lookup(const HostPortPair& server, 45 void Add(const HostPortPair& server, X509Certificate* client_cert); 48 void Remove(const HostPortPair& server); 54 typedef HostPortPair AuthCacheKey;
|
ssl_client_auth_cache.cc | 21 const HostPortPair& server, 33 void SSLClientAuthCache::Add(const HostPortPair& server, 40 void SSLClientAuthCache::Remove(const HostPortPair& server) {
|
ssl_cert_request_info.cc | 15 host_and_port = HostPortPair();
|
/external/chromium_org/jingle/notifier/base/ |
server_information.h | 19 ServerInformation(const net::HostPortPair& server, 26 net::HostPortPair server;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
InetSocketAddressTest.java | 44 HostPortPair[] legalHostPortPairs = { new HostPortPair("127.0.0.1", 1234), 45 new HostPortPair("192.168.0.1", 10000), new HostPortPair("127.0.0", 0), 46 new HostPortPair("127.0.0", 65535), 47 new HostPortPair("strange host", 65535) }; 62 HostPortPair[] illegalHostPortPairs = { new HostPortPair(null, 1), 63 new HostPortPair("host", -1), new HostPortPair("host", 65536) } [all...] |
/external/chromium_org/net/ftp/ |
ftp_response_info.h | 38 HostPortPair socket_address;
|
/external/chromium_org/chrome/browser/local_discovery/ |
privet_http_asynchronous_factory.h | 14 class HostPortPair; 42 const net::HostPortPair& address,
|
privet_http_asynchronous_factory_impl.h | 23 const net::HostPortPair& address, 30 const net::HostPortPair& address, 46 net::HostPortPair hostport_;
|
privet_http_asynchronous_factory_mac.h | 21 const net::HostPortPair& address, 29 const net::HostPortPair& host_port, 39 net::HostPortPair host_port_;
|
/external/chromium_org/components/data_reduction_proxy/browser/ |
data_reduction_proxy_params_unittest.cc | 278 net::HostPortPair host_port_pair; 281 net::HostPortPair expected_first; 282 net::HostPortPair expected_second; 284 { net::HostPortPair::FromURL(GURL(kDefaultOrigin)), 287 net::HostPortPair::FromURL(GURL(kDefaultOrigin)), 288 net::HostPortPair::FromURL(GURL(kDefaultFallbackOrigin)) 290 { net::HostPortPair::FromURL(GURL(kDefaultOrigin)), 293 net::HostPortPair::FromURL(GURL(kDefaultOrigin)), 294 net::HostPortPair::FromURL(GURL()) 296 { net::HostPortPair::FromURL(GURL(kDefaultFallbackOrigin)) [all...] |
/external/chromium_org/chrome/browser/net/ |
http_server_properties_manager.h | 91 virtual bool SupportsSpdy(const net::HostPortPair& server) OVERRIDE; 95 virtual void SetSupportsSpdy(const net::HostPortPair& server, 99 virtual bool HasAlternateProtocol(const net::HostPortPair& server) OVERRIDE; 104 const net::HostPortPair& server) OVERRIDE; 108 const net::HostPortPair& server, 114 const net::HostPortPair& server) OVERRIDE; 118 const net::HostPortPair& server) OVERRIDE; 122 const net::HostPortPair& server) OVERRIDE; 125 virtual void ClearAlternateProtocol(const net::HostPortPair& server) OVERRIDE; 140 const net::HostPortPair& host_port_pair) OVERRIDE [all...] |