Home
last modified time | relevance | path

Searched refs:SpdySession (Results 1 – 25 of 26) sorted by relevance

12

/external/chromium/net/spdy/
Dspdy_session.cc205 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 …]
Dspdy_session_pool.h34 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(
Dspdy_session_pool.cc61 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 …]
Dspdy_session.h47 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_;
Dspdy_stream_unittest.cc20 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()
Dspdy_session_unittest.cc90 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()
Dspdy_http_stream.h27 class SpdySession; variable
34 SpdyHttpStream(SpdySession* spdy_session, bool direct);
98 scoped_refptr<SpdySession> spdy_session_;
Dspdy_http_stream_unittest.cc50 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()
Dspdy_stream.h28 class SpdySession; variable
93 SpdyStream(SpdySession* session,
290 scoped_refptr<SpdySession> session_;
Dspdy_http_stream.cc26 SpdyHttpStream::SpdyHttpStream(SpdySession* spdy_session, in SpdyHttpStream()
131 if (SpdySession::flow_control()) in ReadResponseBody()
Dspdy_proxy_client_socket.h36 class SpdySession; variable
Dspdy_stream.cc38 SpdyStream::SpdyStream(SpdySession* session, in SpdyStream()
Dspdy_proxy_client_socket_unittest.cc112 scoped_refptr<SpdySession> spdy_session_;
176 SpdySession::SetSSLMode(false); in Initialize()
Dspdy_network_transaction_unittest.cc441 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/
Dhttp_stream_factory_impl.h20 class SpdySession; variable
57 void OnSpdySessionReady(scoped_refptr<SpdySession> spdy_session,
Dhttp_network_layer.cc95 SpdySession::SetSSLMode(false); // Disable SSL in EnableSpdy()
120 SpdySession::set_flow_control(true); in EnableSpdy()
Dhttp_stream_factory_impl_request.h50 scoped_refptr<SpdySession> spdy_session,
Dhttp_stream_factory_impl_job.h263 scoped_refptr<SpdySession> new_spdy_session_;
Dhttp_stream_factory_impl.cc167 scoped_refptr<SpdySession> spdy_session, in OnSpdySessionReady()
Dhttp_stream_factory_impl_request.cc230 scoped_refptr<SpdySession> spdy_session, in OnSpdySessionReady()
Dhttp_stream_factory_impl_unittest.cc295 scoped_refptr<SpdySession> spdy_session = in TEST()
Dhttp_stream_factory_impl_job.cc206 scoped_refptr<SpdySession> spdy_session = new_spdy_session_; in OnSpdySessionReadyCallback()
742 scoped_refptr<SpdySession> spdy_session; in DoCreateStream()
Dhttp_proxy_client_socket_pool.cc322 scoped_refptr<SpdySession> spdy_session; in DoSpdyProxyCreateStream()
/external/chromium/net/socket/
Dssl_client_socket_pool_unittest.cc715 scoped_refptr<SpdySession> spdy_session; in TEST_F()
/external/chromium/chrome/browser/
Dbrowser_main.cc455 net::SpdySession::set_max_concurrent_streams(value); in SpdyFieldTrial()

12