/external/chromium/net/spdy/ |
D | spdy_session.cc | 205 bool SpdySession::use_ssl_ = true; 208 bool SpdySession::use_flow_control_ = false; 211 size_t SpdySession::max_concurrent_stream_limit_ = 256; 213 SpdySession::SpdySession(const HostPortProxyPair& host_port_proxy_pair, in SpdySession() function in net::SpdySession 218 read_callback_(this, &SpdySession::OnReadComplete)), in SpdySession() 220 write_callback_(this, &SpdySession::OnWriteComplete)), in SpdySession() 261 SpdySession::~SpdySession() { in ~SpdySession() 285 net::Error SpdySession::InitializeWithSocket( in InitializeWithSocket() 305 bool SpdySession::VerifyDomainAuthentication(const std::string& domain) { in VerifyDomainAuthentication() 317 int SpdySession::GetPushStream( in GetPushStream() [all …]
|
D | spdy_session_pool.h | 34 class SpdySession; variable 48 scoped_refptr<SpdySession> Get( 73 scoped_refptr<SpdySession>* spdy_session, 91 void Remove(const scoped_refptr<SpdySession>& session); 128 typedef std::list<scoped_refptr<SpdySession> > SpdySessionList; 132 scoped_refptr<SpdySession> GetExistingSession( 135 scoped_refptr<SpdySession> GetFromAlias(
|
D | spdy_session_pool.cc | 61 scoped_refptr<SpdySession> SpdySessionPool::Get( in Get() 64 scoped_refptr<SpdySession> spdy_session; in Get() 95 spdy_session = new SpdySession(host_port_proxy_pair, this, &spdy_settings_, in Get() 114 scoped_refptr<SpdySession>* spdy_session, in GetSpdySessionFromSocket() 120 *spdy_session = new SpdySession(host_port_proxy_pair, this, &spdy_settings_, in GetSpdySessionFromSocket() 144 scoped_refptr<SpdySession> spdy_session = in HasSession() 149 void SpdySessionPool::Remove(const scoped_refptr<SpdySession>& session) { in Remove() 186 scoped_refptr<SpdySession> SpdySessionPool::GetExistingSession( in GetExistingSession() 191 scoped_refptr<SpdySession> spdy_session = list->front(); in GetExistingSession() 200 scoped_refptr<SpdySession> SpdySessionPool::GetFromAlias( in GetFromAlias() [all …]
|
D | spdy_session.h | 47 class SpdySession : public base::RefCounted<SpdySession>, 57 SpdySession(const HostPortProxyPair& host_port_proxy_pair, 210 friend class base::RefCounted<SpdySession>; 255 virtual ~SpdySession(); 339 CompletionCallbackImpl<SpdySession> read_callback_; 340 CompletionCallbackImpl<SpdySession> write_callback_; 346 ScopedRunnableMethodFactory<SpdySession> method_factory_;
|
D | spdy_stream_unittest.cc | 20 void RemoveSpdySession(const scoped_refptr<SpdySession>& session) { in RemoveSpdySession() 116 scoped_refptr<SpdySession> CreateSpdySession() { in CreateSpdySession() 120 scoped_refptr<SpdySession> session( in CreateSpdySession() 193 SpdySession::SetSSLMode(false); in TEST_F() 195 scoped_refptr<SpdySession> session(CreateSpdySession()); in TEST_F() 255 scoped_refptr<SpdySession> spdy_session(CreateSpdySession()); in TEST_F()
|
D | spdy_session_unittest.cc | 90 scoped_refptr<SpdySession> session = in TEST_F() 113 scoped_refptr<SpdySession> session2 = in TEST_F() 126 StreamReleaserCallback(SpdySession* session, in StreamReleaserCallback() 146 scoped_refptr<SpdySession> session_; 202 scoped_refptr<SpdySession> session = in TEST_F() 288 scoped_refptr<SpdySession> session = in TEST_F() 388 scoped_refptr<SpdySession> session = in TEST_F() 461 scoped_refptr<SpdySession> session = in IPPoolingTest() 498 scoped_refptr<SpdySession> session2 = in IPPoolingTest()
|
D | spdy_http_stream.h | 27 class SpdySession; variable 34 SpdyHttpStream(SpdySession* spdy_session, bool direct); 98 scoped_refptr<SpdySession> spdy_session_;
|
D | spdy_http_stream_unittest.cc | 50 scoped_refptr<SpdySession> session_; 56 SpdySession::SetSSLMode(false); in TEST_F() 105 SpdySession::SetSSLMode(false); in TEST_F() 168 SpdySession::SetSSLMode(false); in TEST_F()
|
D | spdy_stream.h | 28 class SpdySession; variable 93 SpdyStream(SpdySession* session, 290 scoped_refptr<SpdySession> session_;
|
D | spdy_http_stream.cc | 26 SpdyHttpStream::SpdyHttpStream(SpdySession* spdy_session, in SpdyHttpStream() 131 if (SpdySession::flow_control()) in ReadResponseBody()
|
D | spdy_proxy_client_socket.h | 36 class SpdySession; variable
|
D | spdy_stream.cc | 38 SpdyStream::SpdyStream(SpdySession* session, in SpdyStream()
|
D | spdy_proxy_client_socket_unittest.cc | 112 scoped_refptr<SpdySession> spdy_session_; 176 SpdySession::SetSSLMode(false); in Initialize()
|
D | spdy_network_transaction_unittest.cc | 441 scoped_refptr<SpdySession> spdy_session(pool->Get(pair, log)); in VerifyStreamsClosed() 1853 SpdySession::set_flow_control(true); in TEST_P() 1924 SpdySession::set_flow_control(false); in TEST_P() 1930 SpdySession::set_flow_control(true); in TEST_P() 2007 SpdySession::set_flow_control(false); in TEST_P() 2013 SpdySession::set_flow_control(true); in TEST_P() 2086 SpdySession::set_flow_control(false); in TEST_P() 2105 SpdySession::set_flow_control(true); in TEST_P() 2196 SpdySession::set_flow_control(false); in TEST_P()
|
/external/chromium/net/http/ |
D | http_stream_factory_impl.h | 20 class SpdySession; variable 57 void OnSpdySessionReady(scoped_refptr<SpdySession> spdy_session,
|
D | http_network_layer.cc | 95 SpdySession::SetSSLMode(false); // Disable SSL in EnableSpdy() 120 SpdySession::set_flow_control(true); in EnableSpdy()
|
D | http_stream_factory_impl_request.h | 50 scoped_refptr<SpdySession> spdy_session,
|
D | http_stream_factory_impl_job.h | 263 scoped_refptr<SpdySession> new_spdy_session_;
|
D | http_stream_factory_impl.cc | 167 scoped_refptr<SpdySession> spdy_session, in OnSpdySessionReady()
|
D | http_stream_factory_impl_request.cc | 230 scoped_refptr<SpdySession> spdy_session, in OnSpdySessionReady()
|
D | http_stream_factory_impl_unittest.cc | 295 scoped_refptr<SpdySession> spdy_session = in TEST()
|
D | http_stream_factory_impl_job.cc | 206 scoped_refptr<SpdySession> spdy_session = new_spdy_session_; in OnSpdySessionReadyCallback() 742 scoped_refptr<SpdySession> spdy_session; in DoCreateStream()
|
D | http_proxy_client_socket_pool.cc | 322 scoped_refptr<SpdySession> spdy_session; in DoSpdyProxyCreateStream()
|
/external/chromium/net/socket/ |
D | ssl_client_socket_pool_unittest.cc | 715 scoped_refptr<SpdySession> spdy_session; in TEST_F()
|
/external/chromium/chrome/browser/ |
D | browser_main.cc | 455 net::SpdySession::set_max_concurrent_streams(value); in SpdyFieldTrial()
|