Searched refs:SpdySession (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium/net/base/
H A Drun_all_unittests.cc13 using net::SpdySession;
20 SpdySession::set_enable_ping_based_connection_checking(false);
/external/chromium_org/net/websockets/
H A Dwebsocket_stream_base.h17 class SpdySession;
37 const base::WeakPtr<SpdySession>& session,
/external/chromium/net/spdy/
H A Dspdy_session_pool.h34 class SpdySession;
46 // Either returns an existing SpdySession or creates a new SpdySession for
48 scoped_refptr<SpdySession> Get(
58 // Builds a SpdySession from an existing SSL socket. Users should try
59 // calling Get() first to use an existing SpdySession so we don't get
61 // transferred from the caller to the SpdySession.
73 scoped_refptr<SpdySession>* spdy_session,
89 // Removes a SpdySession from the SpdySessionPool. This should only be called
90 // by SpdySession, becaus
[all...]
H A Dspdy_session.cc222 bool SpdySession::use_ssl_ = true;
225 bool SpdySession::use_flow_control_ = false;
228 size_t SpdySession::max_concurrent_stream_limit_ = 256;
231 bool SpdySession::enable_ping_based_connection_checking_ = true;
234 int SpdySession::connection_at_risk_of_loss_ms_ = 0;
237 int SpdySession::trailing_ping_delay_time_ms_ = 1000;
240 int SpdySession::hung_interval_ms_ = 10000;
242 SpdySession::SpdySession(const HostPortProxyPair& host_port_proxy_pair, function in class:net::SpdySession
247 read_callback_(this, &SpdySession
[all...]
H A Dspdy_session_pool.cc61 scoped_refptr<SpdySession> SpdySessionPool::Get(
64 scoped_refptr<SpdySession> spdy_session;
95 spdy_session = new SpdySession(host_port_proxy_pair, this, &spdy_settings_,
114 scoped_refptr<SpdySession>* spdy_session,
120 *spdy_session = new SpdySession(host_port_proxy_pair, this, &spdy_settings_,
144 scoped_refptr<SpdySession> spdy_session =
149 void SpdySessionPool::Remove(const scoped_refptr<SpdySession>& session) {
186 scoped_refptr<SpdySession> SpdySessionPool::GetExistingSession(
191 scoped_refptr<SpdySession> spdy_session = list->front();
200 scoped_refptr<SpdySession> SpdySessionPoo
[all...]
H A Dspdy_http_stream.h27 class SpdySession;
31 // The SpdyHttpStream is a HTTP-specific type of stream known to a SpdySession.
34 SpdyHttpStream(SpdySession* spdy_session, bool direct);
98 scoped_refptr<SpdySession> spdy_session_;
H A Dspdy_session.h47 class SpdySession : public base::RefCounted<SpdySession>, class in namespace:net
50 // Create a new SpdySession.
57 SpdySession(const HostPortProxyPair& host_port_proxy_pair,
219 friend class base::RefCounted<SpdySession>;
266 virtual ~SpdySession();
296 // SETTINGS ontrol frame, update our SpdySession accordingly.
416 CompletionCallbackImpl<SpdySession> read_callback_;
417 CompletionCallbackImpl<SpdySession> write_callback_;
420 // SpdySession i
[all...]
H A Dspdy_stream_unittest.cc20 void RemoveSpdySession(const scoped_refptr<SpdySession>& session) {
116 scoped_refptr<SpdySession> CreateSpdySession() {
120 scoped_refptr<SpdySession> session(
193 SpdySession::SetSSLMode(false);
195 scoped_refptr<SpdySession> session(CreateSpdySession());
255 scoped_refptr<SpdySession> spdy_session(CreateSpdySession());
H A Dspdy_session_unittest.cc15 // TODO(cbentzel): Expose compression setter/getter in public SpdySession
25 SpdySession::set_enable_ping_based_connection_checking(false);
134 scoped_refptr<SpdySession> session =
152 // Flush the SpdySession::OnReadComplete() task.
157 scoped_refptr<SpdySession> session2 =
205 scoped_refptr<SpdySession> session =
240 SpdySession::set_enable_ping_based_connection_checking(true);
241 SpdySession::set_connection_at_risk_of_loss_ms(0);
242 SpdySession::set_trailing_ping_delay_time_ms(0);
243 SpdySession
[all...]
H A Dspdy_stream.h28 class SpdySession;
32 // The SpdyStream is used by the SpdySession to represent each stream known
33 // on the SpdySession. This class provides interfaces for SpdySession to use.
35 // are initiated by the client, both the SpdySession and client object (such as
37 // initiated by the server, only the SpdySession will maintain any reference,
93 SpdyStream(SpdySession* session,
170 // Called by the SpdySession when a response (e.g. a SYN_STREAM or SYN_REPLY)
174 // Called by the SpdySession when late-bound headers are received for a
178 // Called by the SpdySession whe
[all...]
H A Dspdy_http_stream_unittest.cc50 scoped_refptr<SpdySession> session_;
56 SpdySession::SetSSLMode(false);
105 SpdySession::SetSSLMode(false);
168 SpdySession::SetSSLMode(false);
/external/chromium_org/net/spdy/
H A Dspdy_session_pool.h36 class SpdySession;
92 base::WeakPtr<SpdySession>* available_session,
96 base::WeakPtr<SpdySession> FindAvailableSession(const SpdySessionKey& key,
103 const base::WeakPtr<SpdySession>& available_session);
108 const base::WeakPtr<SpdySession>& unavailable_session);
151 typedef std::set<SpdySession*> SessionSet;
152 typedef std::vector<base::WeakPtr<SpdySession> > WeakSessionList;
153 typedef std::map<SpdySessionKey, base::WeakPtr<SpdySession> >
158 bool IsSessionAvailable(const base::WeakPtr<SpdySession>& session) const;
167 const base::WeakPtr<SpdySession>
[all...]
H A Dspdy_session.cc224 const base::WeakPtr<SpdySession>& session,
296 SpdySession::ActiveStreamInfo::ActiveStreamInfo()
300 SpdySession::ActiveStreamInfo::ActiveStreamInfo(SpdyStream* stream)
304 SpdySession::ActiveStreamInfo::~ActiveStreamInfo() {}
306 SpdySession::PushedStreamInfo::PushedStreamInfo() : stream_id(0) {}
308 SpdySession::PushedStreamInfo::PushedStreamInfo(
314 SpdySession::PushedStreamInfo::~PushedStreamInfo() {}
316 SpdySession::SpdySession( function in class:net::SpdySession
401 SpdySession
[all...]
H A Dspdy_session_pool.cc92 base::WeakPtr<SpdySession>* available_session,
102 scoped_ptr<SpdySession> new_session(
103 new SpdySession(key,
149 base::WeakPtr<SpdySession> SpdySessionPool::FindAvailableSession(
163 return base::WeakPtr<SpdySession>();
171 return base::WeakPtr<SpdySession>();
197 const base::WeakPtr<SpdySession>& available_session =
221 return base::WeakPtr<SpdySession>();
225 const base::WeakPtr<SpdySession>& available_session) {
238 const base::WeakPtr<SpdySession>
[all...]
H A Dspdy_websocket_stream.h24 // SpdySession. WebSocket's opening handshake is converted to SPDY's
61 SpdyWebSocketStream(const base::WeakPtr<SpdySession>& spdy_session,
94 const base::WeakPtr<SpdySession> spdy_session_;
H A Dspdy_http_stream.h26 class SpdySession;
29 // The SpdyHttpStream is a HTTP-specific type of stream known to a SpdySession.
34 SpdyHttpStream(const base::WeakPtr<SpdySession>& spdy_session, bool direct);
63 // Must not be called if a NULL SpdySession was pssed into the
112 const base::WeakPtr<SpdySession> spdy_session_;
H A Dspdy_test_util_common.h39 class SpdySession;
117 const base::WeakPtr<SpdySession>& session,
220 SpdySession::TimeFunc time_func;
243 base::WeakPtr<SpdySession> CreateInsecureSpdySession(
258 base::WeakPtr<SpdySession> CreateSecureSpdySession(
266 base::WeakPtr<SpdySession> CreateFakeSpdySession(SpdySessionPool* pool,
H A Dspdy_session_unittest.cc54 void StallSessionOnly(SpdySession* session, SpdyStream* stream) {
58 void StallStreamOnly(SpdySession* session, SpdyStream* stream) {
62 void StallSessionStream(SpdySession* session, SpdyStream* stream) {
67 void StallStreamSession(SpdySession* session, SpdyStream* stream) {
72 void UnstallSessionOnly(SpdySession* session,
78 void UnstallStreamOnly(SpdySession* session,
84 void UnstallSessionStream(SpdySession* session,
91 void UnstallStreamSession(SpdySession* session,
138 void StallSessionSend(SpdySession* session) {
146 void UnstallSessionSend(SpdySession* sessio
[all...]
H A Dspdy_session.h99 // SpdySession errors
139 const base::WeakPtr<SpdySession>& session,
156 friend class SpdySession;
176 base::WeakPtr<SpdySession> session_;
186 class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface, class in namespace:net
200 // Create a new SpdySession.
205 SpdySession(const SpdySessionKey& spdy_session_key,
220 virtual ~SpdySession();
365 // be destroyed right away, e.g. when a SpdySession function is
480 base::WeakPtr<SpdySession> GetWeakPt
[all...]
H A Dspdy_stream_unittest.cc53 base::WeakPtr<SpdySession> CreateDefaultSpdySession() {
149 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
191 base::WeakPtr<SpdySession> spdy_session(CreateDefaultSpdySession());
262 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
346 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
409 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
469 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
527 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
602 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
682 base::WeakPtr<SpdySession> sessio
[all...]
/external/chromium_org/net/test/
H A Drun_all_unittests.cc23 using net::SpdySession;
/external/chromium/net/http/
H A Dhttp_stream_factory_impl.h20 class SpdySession;
54 // Called when a SpdySession is ready. It will find appropriate Requests and
57 void OnSpdySessionReady(scoped_refptr<SpdySession> spdy_session,
H A Dhttp_network_layer.cc96 SpdySession::SetSSLMode(false); // Disable SSL
103 SpdySession::set_enable_ping_based_connection_checking(false);
123 SpdySession::set_flow_control(true);
/external/chromium_org/net/http/
H A Dhttp_stream_factory_impl.h25 class SpdySession;
94 // Called when a SpdySession is ready. It will find appropriate Requests and
97 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session,
H A Dhttp_stream_factory_impl_request.h19 class SpdySession;
64 // Called by an attached Job if it sets up a SpdySession.
66 const base::WeakPtr<SpdySession>& spdy_session,

Completed in 305 milliseconds

123