HomeSort by relevance Sort by last modified time
    Searched refs:SpdySessionKey (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/net/spdy/
spdy_session_key.h 13 // SpdySessionKey is used as unique index for SpdySessionPool.
14 class NET_EXPORT_PRIVATE SpdySessionKey {
16 SpdySessionKey();
17 SpdySessionKey(const HostPortPair& host_port_pair,
22 SpdySessionKey(const HostPortProxyPair& host_port_proxy_pair,
25 ~SpdySessionKey();
28 bool operator<(const SpdySessionKey& other) const;
31 bool Equals(const SpdySessionKey& other) const;
spdy_session_key.cc 11 SpdySessionKey::SpdySessionKey() : privacy_mode_(PRIVACY_MODE_DISABLED) {
14 SpdySessionKey::SpdySessionKey(const HostPortPair& host_port_pair,
19 DVLOG(1) << "SpdySessionKey(host=" << host_port_pair.ToString()
24 SpdySessionKey::SpdySessionKey(const HostPortProxyPair& host_port_proxy_pair,
28 DVLOG(1) << "SpdySessionKey(hppp=" << host_port_proxy_pair.first.ToString()
33 SpdySessionKey::~SpdySessionKey() {}
    [all...]
spdy_session_pool.h 65 // a reference to it and there is some SpdySessionKey for which
68 // FindAvailableSession() for any SpdySessionKey; for example, this
86 const SpdySessionKey& key,
93 base::WeakPtr<SpdySession> FindAvailableSession(const SpdySessionKey& key,
153 typedef std::map<SpdySessionKey, base::WeakPtr<SpdySession> >
155 typedef std::map<IPEndPoint, SpdySessionKey> AliasMap;
162 const SpdySessionKey& NormalizeListKey(const SpdySessionKey& key) const;
166 void MapKeyToAvailableSession(const SpdySessionKey& key,
172 const SpdySessionKey& key)
    [all...]
spdy_session_pool.cc 87 const SpdySessionKey& key,
139 const SpdySessionKey& key,
168 const SpdySessionKey& alias_key = alias_it->second;
214 const std::set<SpdySessionKey>& aliases = available_session->pooled_aliases();
215 for (std::set<SpdySessionKey>::const_iterator it = aliases.begin();
266 const SpdySessionKey& key = it->first;
267 const SpdySessionKey& session_key = it->second->spdy_session_key();
325 const SpdySessionKey& SpdySessionPool::NormalizeListKey(
326 const SpdySessionKey& key) const {
330 static SpdySessionKey* single_domain_key = NULL
    [all...]
hpack_huffman_aggregator.h 34 // HpackEncoder keyed on the transaction's SpdySessionKey. Literal headers
47 typedef std::pair<SpdySessionKey, HpackEncoder*> OriginEncoder;
60 HpackEncoder* ObtainEncoder(const SpdySessionKey& key);
hpack_huffman_aggregator_test.cc 57 HpackEncoder* ObtainEncoder(const SpdySessionKey& key) {
115 SpdySessionKey key1(HostPortPair("one.com", 443), ProxyServer::Direct(),
117 SpdySessionKey key2(HostPortPair("two.com", 443), ProxyServer::Direct(),
119 SpdySessionKey key3(HostPortPair("three.com", 443), ProxyServer::Direct(),
spdy_test_util_common.h 40 class SpdySessionKey;
245 bool HasSpdySession(SpdySessionPool* pool, const SpdySessionKey& key);
252 const SpdySessionKey& key,
261 const SpdySessionKey& key,
268 const SpdySessionKey& key,
275 const SpdySessionKey& key);
284 const SpdySessionKey& key,
291 void RemoveAliases(const SpdySessionKey& key);
spdy_session_pool_unittest.cc 61 const SpdySessionKey& key)
84 const SpdySessionKey key_;
96 SpdySessionKey test_key =
97 SpdySessionKey(
159 SpdySessionKey key1(test_host_port_pair1, ProxyServer::Direct(),
173 SpdySessionKey key2(test_host_port_pair2, ProxyServer::Direct(),
187 SpdySessionKey key3(test_host_port_pair3, ProxyServer::Direct(),
267 SpdySessionKey test_key =
268 SpdySessionKey(
324 SpdySessionKey key
    [all...]
spdy_http_stream_unittest.cc 92 const SpdySessionKey& key) {
105 const SpdySessionKey& key) {
144 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
170 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
245 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
334 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
410 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
504 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
563 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
hpack_huffman_aggregator.cc 55 SpdySessionKey(endpoint, proxy, request.privacy_mode));
131 HpackEncoder* HpackHuffmanAggregator::ObtainEncoder(const SpdySessionKey& key) {
spdy_session.h 230 SpdySession(const SpdySessionKey& spdy_session_key,
252 const SpdySessionKey& spdy_session_key() const {
469 void AddPooledAlias(const SpdySessionKey& alias_key);
472 const std::set<SpdySessionKey>& pooled_aliases() const {
    [all...]
spdy_test_util_common.cc 506 bool HasSpdySession(SpdySessionPool* pool, const SpdySessionKey& key) {
514 const SpdySessionKey& key,
576 const SpdySessionKey& key,
584 const SpdySessionKey& key,
594 const SpdySessionKey& key,
659 const SpdySessionKey& key,
678 const SpdySessionKey& key) {
684 const SpdySessionKey& key,
693 void SpdySessionPoolPeer::RemoveAliases(const SpdySessionKey& key) {
    [all...]
spdy_websocket_stream_unittest.cc 202 spdy_session_key_ = SpdySessionKey(host_port_pair_,
284 SpdySessionKey spdy_session_key_;
spdy_session_unittest.cc 178 SpdySessionKey key_;
    [all...]
  /external/chromium_org/net/http/
http_stream_factory_impl_request.h 37 // for this SpdySessionKey, since we may need to wait for NPN to complete
39 void SetSpdySessionKey(const SpdySessionKey& spdy_session_key);
130 scoped_ptr<const SpdySessionKey> spdy_session_key_;
http_stream_factory_impl_job.h 199 SpdySessionKey GetSpdySessionKey() const;
242 const SpdySessionKey& spdy_session_key,
http_stream_factory_impl.h 68 typedef std::map<SpdySessionKey, RequestSet> SpdySessionRequestMap;
http_stream_factory_impl_job.cc 270 SpdySessionKey HttpStreamFactoryImpl::Job::GetSpdySessionKey() const {
276 return SpdySessionKey(proxy_info_.proxy_server().host_port_pair(),
280 return SpdySessionKey(origin_,
431 const SpdySessionKey& spdy_session_key,
780 SpdySessionKey spdy_session_key = GetSpdySessionKey();
880 SpdySessionKey spdy_session_key = GetSpdySessionKey();
    [all...]
http_stream_factory_impl_request.cc 56 const SpdySessionKey& spdy_session_key) {
58 spdy_session_key_.reset(new SpdySessionKey(spdy_session_key));
http_proxy_client_socket_pool.cc 207 SpdySessionKey key(params_->destination().host_port_pair(),
310 SpdySessionKey key(params_->destination().host_port_pair(),
http_stream_factory_impl.cc 271 const SpdySessionKey& spdy_session_key = spdy_session->spdy_session_key();
http_stream_factory_impl_unittest.cc 530 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
641 SpdySessionKey key(host_port_pair, ProxyServer::Direct(),
    [all...]
  /external/chromium_org/net/socket/
ssl_client_socket_pool_unittest.cc 807 SpdySessionKey key;
830 // Setup a SpdySessionKey
831 test_hosts[i].key = SpdySessionKey(
    [all...]
  /external/chromium_org/net/websockets/
websocket_job.cc 585 const SpdySessionKey key(HostPortPair::FromURL(socket_->url()),
websocket_job_test.cc 290 spdy_session_key_ = SpdySessionKey(host_port_pair_,
319 SpdySessionKey spdy_session_key_;
    [all...]

Completed in 188 milliseconds

1 2