/external/chromium/net/base/ |
run_all_unittests.cc | 13 using net::SpdySession; 20 SpdySession::set_enable_ping_based_connection_checking(false);
|
/external/chromium_org/net/websockets/ |
websocket_handshake_stream_base.h | 23 class SpdySession; 53 const base::WeakPtr<SpdySession>& session,
|
websocket_handshake_stream_create_helper.cc | 37 const base::WeakPtr<SpdySession>& session,
|
websocket_handshake_stream_create_helper.h | 39 const base::WeakPtr<SpdySession>& session,
|
/external/chromium_org/net/spdy/ |
spdy_session_pool.h | 36 class SpdySession; 91 base::WeakPtr<SpdySession>* available_session, 95 base::WeakPtr<SpdySession> FindAvailableSession(const SpdySessionKey& key, 102 const base::WeakPtr<SpdySession>& available_session); 107 const base::WeakPtr<SpdySession>& unavailable_session); 153 typedef std::set<SpdySession*> SessionSet; 154 typedef std::vector<base::WeakPtr<SpdySession> > WeakSessionList; 155 typedef std::map<SpdySessionKey, base::WeakPtr<SpdySession> > 160 bool IsSessionAvailable(const base::WeakPtr<SpdySession>& session) const; 169 const base::WeakPtr<SpdySession>& session) [all...] |
spdy_session.cc | 272 const base::WeakPtr<SpdySession>& session, 346 SpdySession::ActiveStreamInfo::ActiveStreamInfo() 350 SpdySession::ActiveStreamInfo::ActiveStreamInfo(SpdyStream* stream) 354 SpdySession::ActiveStreamInfo::~ActiveStreamInfo() {} 356 SpdySession::PushedStreamInfo::PushedStreamInfo() : stream_id(0) {} 358 SpdySession::PushedStreamInfo::PushedStreamInfo( 364 SpdySession::PushedStreamInfo::~PushedStreamInfo() {} 366 SpdySession::SpdySession( 447 SpdySession::~SpdySession() [all...] |
spdy_session_pool.cc | 87 base::WeakPtr<SpdySession>* available_session, 95 scoped_ptr<SpdySession> new_session( 96 new SpdySession(key, 141 base::WeakPtr<SpdySession> SpdySessionPool::FindAvailableSession( 155 return base::WeakPtr<SpdySession>(); 163 return base::WeakPtr<SpdySession>(); 189 const base::WeakPtr<SpdySession>& available_session = 213 return base::WeakPtr<SpdySession>(); 217 const base::WeakPtr<SpdySession>& available_session) { 230 const base::WeakPtr<SpdySession>& unavailable_session) [all...] |
spdy_websocket_stream.h | 24 // 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_;
|
spdy_http_stream.h | 26 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 114 const base::WeakPtr<SpdySession> spdy_session_;
|
spdy_test_util_common.h | 39 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,
|
spdy_session_unittest.cc | 54 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* session, int32 delta_window_size) [all...] |
/external/chromium/net/spdy/ |
spdy_session_pool.h | 34 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, because otherwise session->state_ is not set to CLOSED [all...] |
spdy_session.cc | 222 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, 247 read_callback_(this, &SpdySession::OnReadComplete)) [all...] |
spdy_session_pool.cc | 61 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> SpdySessionPool::GetFromAlias [all...] |
spdy_http_stream.h | 27 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_;
|
spdy_session.h | 47 class SpdySession : public base::RefCounted<SpdySession>, 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 is refcounted because we don't need to keep the SpdySessio [all...] |
spdy_stream_unittest.cc | 20 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());
|
spdy_session_unittest.cc | 15 // 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::set_hung_interval_ms(50) [all...] |
spdy_stream.h | 28 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 when response data has been received for thi [all...] |
spdy_http_stream_unittest.cc | 50 scoped_refptr<SpdySession> session_; 56 SpdySession::SetSSLMode(false); 105 SpdySession::SetSSLMode(false); 168 SpdySession::SetSSLMode(false);
|
/external/chromium_org/net/test/ |
run_all_unittests.cc | 25 using net::SpdySession;
|
/external/chromium/net/http/ |
http_stream_factory_impl.h | 20 class SpdySession; 54 // Called when a SpdySession is ready. It will find appropriate Requests and 57 void OnSpdySessionReady(scoped_refptr<SpdySession> spdy_session,
|
http_network_layer.cc | 96 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/ |
http_stream_factory_impl.h | 26 class SpdySession; 98 // Called when a SpdySession is ready. It will find appropriate Requests and 101 void OnNewSpdySessionReady(const base::WeakPtr<SpdySession>& spdy_session,
|
http_stream_factory_impl_request.h | 19 class SpdySession; 65 // Called by an attached Job if it sets up a SpdySession. 67 const base::WeakPtr<SpdySession>& spdy_session,
|