/external/chromium/net/spdy/ |
D | 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, in SpdySession() function in net::SpdySession 247 read_callback_(this, &SpdySession::OnReadComplete)), in SpdySession() 249 write_callback_(this, &SpdySession::OnWriteComplete)), in SpdySession() [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_unittest.cc | 25 SpdySession::set_enable_ping_based_connection_checking(false); in TearDown() 134 scoped_refptr<SpdySession> session = in TEST_F() 157 scoped_refptr<SpdySession> session2 = in TEST_F() 205 scoped_refptr<SpdySession> session = in TEST_F() 240 SpdySession::set_enable_ping_based_connection_checking(true); in TEST_F() 241 SpdySession::set_connection_at_risk_of_loss_ms(0); in TEST_F() 242 SpdySession::set_trailing_ping_delay_time_ms(0); in TEST_F() 243 SpdySession::set_hung_interval_ms(50); in TEST_F() 265 StreamReleaserCallback(SpdySession* session, in StreamReleaserCallback() 285 scoped_refptr<SpdySession> session_; [all …]
|
D | spdy_session.h | 47 class SpdySession : public base::RefCounted<SpdySession>, 57 SpdySession(const HostPortProxyPair& host_port_proxy_pair, 219 friend class base::RefCounted<SpdySession>; 266 virtual ~SpdySession(); 416 CompletionCallbackImpl<SpdySession> read_callback_; 417 CompletionCallbackImpl<SpdySession> write_callback_; 423 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_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_;
|
/external/chromium_org/net/spdy/ |
D | spdy_session.cc | 272 const base::WeakPtr<SpdySession>& session, in StartRequest() 346 SpdySession::ActiveStreamInfo::ActiveStreamInfo() in ActiveStreamInfo() 350 SpdySession::ActiveStreamInfo::ActiveStreamInfo(SpdyStream* stream) in ActiveStreamInfo() 354 SpdySession::ActiveStreamInfo::~ActiveStreamInfo() {} in ~ActiveStreamInfo() 356 SpdySession::PushedStreamInfo::PushedStreamInfo() : stream_id(0) {} in PushedStreamInfo() 358 SpdySession::PushedStreamInfo::PushedStreamInfo( in PushedStreamInfo() 364 SpdySession::PushedStreamInfo::~PushedStreamInfo() {} in ~PushedStreamInfo() 366 SpdySession::SpdySession( in SpdySession() function in net::SpdySession 447 SpdySession::~SpdySession() { in ~SpdySession() 463 Error SpdySession::InitializeWithSocket( in InitializeWithSocket() [all …]
|
D | spdy_session_pool.h | 36 class SpdySession; variable 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);
|
D | spdy_session_pool.cc | 87 base::WeakPtr<SpdySession>* available_session, in CreateAvailableSessionFromSocket() 95 scoped_ptr<SpdySession> new_session( in CreateAvailableSessionFromSocket() 96 new SpdySession(key, in CreateAvailableSessionFromSocket() 141 base::WeakPtr<SpdySession> SpdySessionPool::FindAvailableSession( in FindAvailableSession() 155 return base::WeakPtr<SpdySession>(); in FindAvailableSession() 163 return base::WeakPtr<SpdySession>(); in FindAvailableSession() 189 const base::WeakPtr<SpdySession>& available_session = in FindAvailableSession() 213 return base::WeakPtr<SpdySession>(); in FindAvailableSession() 217 const base::WeakPtr<SpdySession>& available_session) { in MakeSessionUnavailable() 230 const base::WeakPtr<SpdySession>& unavailable_session) { in RemoveUnavailableSession() [all …]
|
D | spdy_session_unittest.cc | 54 void StallSessionOnly(SpdySession* session, SpdyStream* stream) { in StallSessionOnly() 58 void StallStreamOnly(SpdySession* session, SpdyStream* stream) { in StallStreamOnly() 62 void StallSessionStream(SpdySession* session, SpdyStream* stream) { in StallSessionStream() 67 void StallStreamSession(SpdySession* session, SpdyStream* stream) { in StallStreamSession() 72 void UnstallSessionOnly(SpdySession* session, in UnstallSessionOnly() 78 void UnstallStreamOnly(SpdySession* session, in UnstallStreamOnly() 84 void UnstallSessionStream(SpdySession* session, in UnstallSessionStream() 91 void UnstallStreamSession(SpdySession* session, in UnstallStreamSession() 138 void StallSessionSend(SpdySession* session) { in StallSessionSend() 146 void UnstallSessionSend(SpdySession* session, int32 delta_window_size) { in UnstallSessionSend() [all …]
|
D | spdy_session.h | 138 const base::WeakPtr<SpdySession>& session, 155 friend class SpdySession; 176 base::WeakPtr<SpdySession> session_; 186 class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface, 205 SpdySession(const SpdySessionKey& spdy_session_key, 219 virtual ~SpdySession(); 459 base::WeakPtr<SpdySession> GetWeakPtr(); 465 friend class base::RefCounted<SpdySession>; 920 base::WeakPtrFactory<SpdySession> weak_factory_;
|
D | spdy_session_pool_unittest.cc | 116 base::WeakPtr<SpdySession> session = in TEST_P() 161 base::WeakPtr<SpdySession> session1 = in TEST_P() 175 base::WeakPtr<SpdySession> session2 = in TEST_P() 189 base::WeakPtr<SpdySession> session3 = in TEST_P() 279 base::WeakPtr<SpdySession> session = in TEST_P() 369 base::WeakPtr<SpdySession> session = in RunIPPoolingTest() 393 base::WeakPtr<SpdySession> session2 = in RunIPPoolingTest() 404 base::WeakPtr<SpdySession> session1 = in RunIPPoolingTest()
|
D | spdy_test_util_common.h | 39 class SpdySession; variable 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,
|
D | spdy_stream.cc | 81 const base::WeakPtr<SpdySession>& session, in SpdyStream() 219 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in AdjustSendWindowSize() 239 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in OnWriteBufferConsumed() 254 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in IncreaseSendWindowSize() 285 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in DecreaseSendWindowSize() 310 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in OnReadBufferConsumed() 317 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in IncreaseRecvWindowSize() 347 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM); in DecreaseRecvWindowSize() 495 if (session_->flow_control_state() >= SpdySession::FLOW_CONTROL_STREAM) { in OnDataReceived() 856 if (session_->flow_control_state() >= SpdySession::FLOW_CONTROL_STREAM) { in QueueNextDataFrame()
|
D | spdy_http_stream.h | 26 class SpdySession; variable 34 SpdyHttpStream(const base::WeakPtr<SpdySession>& spdy_session, bool direct); 114 const base::WeakPtr<SpdySession> spdy_session_;
|
D | spdy_websocket_stream.h | 61 SpdyWebSocketStream(const base::WeakPtr<SpdySession>& spdy_session, 94 const base::WeakPtr<SpdySession> spdy_session_;
|
D | spdy_stream_unittest.cc | 53 base::WeakPtr<SpdySession> CreateDefaultSpdySession() { in CreateDefaultSpdySession() 150 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 192 base::WeakPtr<SpdySession> spdy_session(CreateDefaultSpdySession()); in TEST_P() 263 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 347 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 410 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 470 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 528 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 603 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() 683 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession()); in TEST_P() [all …]
|
D | spdy_stream.h | 38 class SpdySession; variable 160 const base::WeakPtr<SpdySession>& session, 492 const base::WeakPtr<SpdySession> session_;
|
/external/chromium/net/base/ |
D | run_all_unittests.cc | 13 using net::SpdySession; 20 SpdySession::set_enable_ping_based_connection_checking(false); in main()
|
/external/chromium_org/net/websockets/ |
D | websocket_handshake_stream_base.h | 23 class SpdySession; variable 53 const base::WeakPtr<SpdySession>& session,
|
/external/chromium/net/http/ |
D | http_network_layer.cc | 96 SpdySession::SetSSLMode(false); // Disable SSL in EnableSpdy() 103 SpdySession::set_enable_ping_based_connection_checking(false); in EnableSpdy() 123 SpdySession::set_flow_control(true); in EnableSpdy()
|
D | http_stream_factory_impl.h | 20 class SpdySession; variable 57 void OnSpdySessionReady(scoped_refptr<SpdySession> spdy_session,
|