HomeSort by relevance Sort by last modified time
    Searched refs:SpdySession (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium/net/base/
run_all_unittests.cc 13 using net::SpdySession;
20 SpdySession::set_enable_ping_based_connection_checking(false);
  /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);
spdy_proxy_client_socket.h 36 class SpdySession;
spdy_http_stream.cc 26 SpdyHttpStream::SpdyHttpStream(SpdySession* spdy_session,
131 if (SpdySession::flow_control())
spdy_stream.cc 38 SpdyStream::SpdyStream(SpdySession* session,
spdy_proxy_client_socket_unittest.cc 112 scoped_refptr<SpdySession> spdy_session_;
176 SpdySession::SetSSLMode(false);
629 Run(1); // SpdySession consumes the next read and sends it to
654 Run(1); // SpdySession consumes the next read and sends it to
657 Run(1); // SpdySession consumes the next read and sends it to
682 Run(2); // SpdySession consumes the next two reads and sends then to
708 Run(2); // SpdySession consumes the next two reads and sends then to
738 Run(4); // SpdySession consumes the next four reads and sends then to
768 Run(2); // SpdySession consumes the next two reads and sends then to
795 Run(1); // SpdySession consumes the next read and sends it t
    [all...]
spdy_network_transaction_unittest.cc 99 // finishes. If we had put an EOF on the socket, the SpdySession would
441 scoped_refptr<SpdySession> spdy_session(pool->Get(pair, log));
    [all...]
  /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);
http_stream_factory_impl_request.h 48 // Called by an attached Job if it sets up a SpdySession.
50 scoped_refptr<SpdySession> spdy_session,
http_stream_factory_impl_job.h 104 // existing SpdySession. In that case, the http and npn-spdy jobs will race.
262 // Initialized when we create a new SpdySession.
263 scoped_refptr<SpdySession> new_spdy_session_;
http_stream_factory_impl.cc 167 scoped_refptr<SpdySession> spdy_session,
http_stream_factory_impl_request.cc 87 // SpdySession (one that was not created by a job in our |jobs_| set).
96 // they complete? Or do we want to prevent connecting a new SpdySession if
230 scoped_refptr<SpdySession> spdy_session,
http_stream_factory_impl_unittest.cc 292 // Set an existing SpdySession in the pool.
295 scoped_refptr<SpdySession> spdy_session =
http_proxy_client_socket_pool.cc 322 scoped_refptr<SpdySession> spdy_session;
http_stream_factory_impl_job.cc 206 scoped_refptr<SpdySession> spdy_session = new_spdy_session_;
543 // If we're preconnecting, but we already have a SpdySession, we don't
742 scoped_refptr<SpdySession> spdy_session;
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_pool_unittest.cc 715 scoped_refptr<SpdySession> spdy_session;

Completed in 255 milliseconds

1 2