Searched refs:QuicServerId (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/net/quic/
H A Dquic_server_id.cc11 QuicServerId::QuicServerId() {} function in class:net::QuicServerId
13 QuicServerId::QuicServerId(const HostPortPair& host_port_pair, function in class:net::QuicServerId
20 QuicServerId::QuicServerId(const string& host, function in class:net::QuicServerId
27 QuicServerId::QuicServerId(const string& host, function in class:net::QuicServerId
35 QuicServerId::~QuicServerId() {}
[all...]
H A Dquic_server_id.h18 class NET_EXPORT_PRIVATE QuicServerId { class in namespace:net
20 QuicServerId();
21 QuicServerId(const HostPortPair& host_port_pair,
24 QuicServerId(const std::string& host,
27 QuicServerId(const std::string& host,
31 ~QuicServerId();
34 bool operator<(const QuicServerId& other) const;
35 bool operator==(const QuicServerId& other) const;
37 // ToString() will convert the QuicServerId to "scheme:hostname:port" or
H A Dquic_server_id_test.cc18 QuicServerId google_http_server_id(google_host_port_pair, false,
23 QuicServerId google_https_server_id(google_host_port_pair, true,
28 QuicServerId private_http_server_id(google_host_port_pair, false,
33 QuicServerId private_https_server_id(google_host_port_pair, true,
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_http
[all...]
H A Dquic_crypto_client_stream_factory.h16 class QuicServerId;
25 const QuicServerId& server_id,
H A Dquic_stream_factory.h40 class QuicServerId;
198 typedef std::map<QuicServerId, QuicClientSession*> SessionMap;
199 typedef std::map<QuicClientSession*, QuicServerId> SessionIdMap;
200 typedef std::set<QuicServerId> AliasSet;
204 typedef std::map<QuicServerId, QuicCryptoClientConfig*> CryptoConfigMap;
205 typedef std::map<QuicServerId, Job*> JobMap;
212 scoped_ptr<QuicHttpStream> CreateIfSessionExists(const QuicServerId& key,
215 bool OnResolution(const QuicServerId& server_id,
218 bool HasActiveSession(const QuicServerId& server_id) const;
219 bool HasActiveJob(const QuicServerId
[all...]
H A Dquic_crypto_client_stream.h28 QuicCryptoClientStream(const QuicServerId& server_id,
157 const QuicServerId server_id_;
H A Dquic_stream_factory.cc168 QuicServerId server_id);
189 const QuicServerId server_id() const {
208 QuicServerId server_id_;
246 QuicServerId server_id)
560 QuicServerId server_id(host_port_pair, is_https, privacy_mode);
605 const QuicServerId& server_id,
663 const QuicServerId& server_id,
733 QuicServerId server_id = *aliases.begin();
768 const QuicServerId& server_id = it->first;
811 const QuicServerId
[all...]
H A Dquic_client_session.h33 class QuicServerId;
105 const QuicServerId& server_id,
/external/chromium_org/net/quic/test_tools/
H A Dmock_crypto_client_stream.h17 class QuicServerId;
39 const QuicServerId& server_id,
H A Dmock_crypto_client_stream_factory.h16 class QuicServerId;
24 const QuicServerId& server_id,
H A Dmock_crypto_client_stream_factory.cc24 const QuicServerId& server_id,
H A Dmock_crypto_client_stream.cc15 const QuicServerId& server_id,
/external/chromium_org/net/quic/crypto/
H A Dquic_crypto_client_config.h141 CachedState* LookupOrCreate(const QuicServerId& server_id);
153 void FillInchoateClientHello(const QuicServerId& server_id,
173 QuicErrorCode FillClientHello(const QuicServerId& server_id,
244 void InitializeFrom(const QuicServerId& server_id,
245 const QuicServerId& canonical_server_id,
270 typedef std::map<QuicServerId, CachedState*> CachedStateMap;
286 void PopulateFromCanonicalConfig(const QuicServerId& server_id,
297 std::map<QuicServerId, QuicServerId> canonical_server_map_;
H A Dquic_server_info.h28 QuicServerInfo(const QuicServerId& server_id);
102 const QuicServerId server_id_;
113 virtual QuicServerInfo* GetForServer(const QuicServerId& server_id) = 0;
H A Dquic_crypto_client_config_test.cc73 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
96 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
111 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
128 QuicServerId server_id("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
173 QuicServerId canonical_server_id("www.google.com", 80, false,
181 QuicServerId other_server_id("mail.google.com", 80, false,
196 QuicServerId canonical_id1("www.google.com", 80, false,
198 QuicServerId canonical_id2("mail.google.com", 80, false,
215 QuicServerId different_id("mail.google.org", 80, false,
223 QuicServerId canonical_id
[all...]
H A Dquic_server_info.cc32 QuicServerInfo::QuicServerInfo(const QuicServerId& server_id)
/external/chromium_org/net/tools/quic/
H A Dquic_client_session.h21 class QuicServerId;
37 void InitializeSession(const QuicServerId& server_id,
H A Dquic_client.h28 class QuicServerId;
53 const QuicServerId& server_id,
58 const QuicServerId& server_id,
140 const QuicServerId& server_id() const { return server_id_; }
143 void set_server_id(const QuicServerId& server_id) {
214 QuicServerId server_id_;
H A Dquic_client_session.cc26 const QuicServerId& server_id,
H A Dquic_client_bin.cc134 net::QuicServerId(FLAGS_hostname, FLAGS_port, FLAGS_secure,
H A Dquic_client_session_test.cc48 QuicServerId(kServerHostname, kPort, false, PRIVACY_MODE_DISABLED),
H A Dquic_spdy_client_stream_test.cc35 QuicServerId("example.com", 80, false, PRIVACY_MODE_DISABLED),
/external/chromium_org/net/http/
H A Ddisk_cache_based_quic_server_info.h21 class QuicServerId;
30 DiskCacheBasedQuicServerInfo(const QuicServerId& server_id,
93 const QuicServerId server_id_;
H A Ddisk_cache_based_quic_server_info_unittest.cc60 QuicServerId server_id("www.verisign.com", 443, true, PRIVACY_MODE_DISABLED);
78 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
145 QuicServerId server_id1("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
169 QuicServerId server_id2("www.google.com", 80, false, PRIVACY_MODE_DISABLED);
232 QuicServerId server_id("www.google.com", 443, true, PRIVACY_MODE_DISABLED);
/external/chromium_org/net/tools/quic/test_tools/
H A Dquic_test_client.cc27 using net::QuicServerId;
105 const QuicServerId& server_id,
118 const QuicServerId& server_id,
165 QuicServerId(server_hostname,
179 QuicServerId(server_hostname,
196 QuicServerId(server_hostname,
256 QuicServerId(url.host(),

Completed in 785 milliseconds

12