Searched refs:HostPortPair (Results 1 - 25 of 270) sorted by relevance

1234567891011

/external/chromium_org/net/base/
H A Dhost_port_pair.cc17 HostPortPair::HostPortPair() : port_(0) {} function in class:net::HostPortPair
18 HostPortPair::HostPortPair(const std::string& in_host, uint16 in_port) function in class:net::HostPortPair
22 HostPortPair HostPortPair::FromURL(const GURL& url) {
23 return HostPortPair(url.HostNoBrackets(), url.EffectiveIntPort());
27 HostPortPair HostPortPair::FromIPEndPoint(const IPEndPoint& ipe) {
28 return HostPortPair(ip
[all...]
H A Dhost_port_pair_unittest.cc32 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 fo
[all...]
H A Dhost_port_pair.h18 class NET_EXPORT HostPortPair { class in namespace:net
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
[all...]
H A Dproxy_delegate.h17 class HostPortPair;
56 virtual void OnBeforeTunnelRequest(const HostPortPair& proxy_server,
61 const HostPortPair& origin,
62 const HostPortPair& proxy_server,
H A Dhost_mapping_rules_unittest.cc19 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/quic/
H A Dquic_server_id_test.cc16 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("
[all...]
H A Dport_suggester.h15 class HostPortPair;
26 PortSuggester(const HostPortPair& server, uint64 seed);
H A Dport_suggester_unittest.cc32 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),
H A Dquic_server_id.h21 QuicServerId(const HostPortPair& host_port_pair,
42 const HostPortPair& host_port_pair() const { return host_port_pair_; }
53 HostPortPair host_port_pair_;
/external/chromium_org/net/socket/
H A Dmock_client_socket_pool_manager.h22 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, SSLClientSocketPoo
[all...]
H A Dsocket_net_log_params.h13 class HostPortPair;
20 // Creates a NetLog callback for a HostPortPair.
23 const HostPortPair* host_and_port);
H A Dmock_client_socket_pool_manager.cc28 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/http/
H A Dhttp_server_properties_impl.h55 const net::HostPortPair& host_port_pair);
65 std::string GetCanonicalSuffix(const net::HostPortPair& server);
78 virtual bool SupportsSpdy(const HostPortPair& server) OVERRIDE;
81 virtual void SetSupportsSpdy(const HostPortPair& server,
85 virtual bool HasAlternateProtocol(const HostPortPair& server) OVERRIDE;
90 const HostPortPair& server) OVERRIDE;
94 const HostPortPair& server,
100 virtual void SetBrokenAlternateProtocol(const HostPortPair& server) OVERRIDE;
104 const HostPortPair& server) OVERRIDE;
107 virtual void ConfirmAlternateProtocol(const HostPortPair
[all...]
H A Dhttp_server_properties.h131 HostPortPair, AlternateProtocolInfo> AlternateProtocolMap;
132 typedef base::MRUCache<HostPortPair, SettingsMap> SpdySettingsMap;
133 typedef std::map<HostPortPair, SupportsQuic> SupportsQuicMap;
159 virtual bool SupportsSpdy(const HostPortPair& server) = 0;
163 virtual void SetSupportsSpdy(const HostPortPair& server,
167 virtual bool HasAlternateProtocol(const HostPortPair& server) = 0;
172 const HostPortPair& server) = 0;
175 virtual void SetAlternateProtocol(const HostPortPair& server,
181 virtual void SetBrokenAlternateProtocol(const HostPortPair& server) = 0;
185 const HostPortPair
[all...]
H A Dhttp_server_properties_manager.h88 virtual bool SupportsSpdy(const HostPortPair& server) OVERRIDE;
92 virtual void SetSupportsSpdy(const HostPortPair& server,
96 virtual bool HasAlternateProtocol(const HostPortPair& server) OVERRIDE;
101 const HostPortPair& server) OVERRIDE;
105 const HostPortPair& server,
111 virtual void SetBrokenAlternateProtocol(const HostPortPair& server) OVERRIDE;
115 const HostPortPair& server) OVERRIDE;
118 virtual void ConfirmAlternateProtocol(const HostPortPair& server) OVERRIDE;
121 virtual void ClearAlternateProtocol(const HostPortPair& server) OVERRIDE;
138 const HostPortPair
[all...]
/external/chromium_org/jingle/glue/
H A Dresolving_client_socket_factory.h12 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;
H A Dxmpp_client_socket_factory.h18 class HostPortPair;
39 const net::HostPortPair& host_and_port) OVERRIDE;
43 const net::HostPortPair& host_and_port) OVERRIDE;
/external/chromium_org/net/ssl/
H A Dssl_client_auth_cache.h38 bool Lookup(const HostPortPair& server,
45 void Add(const HostPortPair& server, X509Certificate* client_cert);
48 void Remove(const HostPortPair& server);
54 typedef HostPortPair AuthCacheKey;
H A Dssl_client_auth_cache.cc21 const HostPortPair& server,
33 void SSLClientAuthCache::Add(const HostPortPair& server,
40 void SSLClientAuthCache::Remove(const HostPortPair& server) {
H A Dssl_cert_request_info.cc15 host_and_port = HostPortPair();
/external/chromium_org/jingle/notifier/base/
H A Dserver_information.h19 ServerInformation(const net::HostPortPair& server,
26 net::HostPortPair server;
/external/chromium_org/components/data_reduction_proxy/browser/
H A Ddata_reduction_proxy_params_unittest.cc533 net::HostPortPair host_port_pair;
538 net::HostPortPair expected_first;
539 net::HostPortPair expected_second;
545 net::HostPortPair::FromURL(GURL(
551 net::HostPortPair::FromURL(GURL(
553 net::HostPortPair::FromURL(GURL(
560 net::HostPortPair::FromURL(GURL(
566 net::HostPortPair::FromURL(GURL(
568 net::HostPortPair::FromURL(GURL()),
574 net::HostPortPair
[all...]
H A Ddata_reduction_proxy_delegate.cc40 const net::HostPortPair& proxy_server,
46 const net::HostPortPair& origin,
47 const net::HostPortPair& proxy_server,
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_http_asynchronous_factory_mac.h21 const net::HostPortPair& address,
29 const net::HostPortPair& host_port,
39 net::HostPortPair host_port_;
H A Dprivet_http_asynchronous_factory.h14 class HostPortPair;
42 const net::HostPortPair& address,

Completed in 312 milliseconds

1234567891011