HomeSort by relevance Sort by last modified time
    Searched refs:SpdySession (Results 26 - 50 of 66) sorted by null

12 3

  /external/chromium_org/net/spdy/
spdy_session.h 98 // SpdySession errors
138 const base::WeakPtr<SpdySession>& session,
155 friend class SpdySession;
176 base::WeakPtr<SpdySession> session_;
186 class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface,
200 // Create a new SpdySession.
205 SpdySession(const SpdySessionKey& spdy_session_key,
219 virtual ~SpdySession();
348 // be destroyed right away, e.g. when a SpdySession function is
459 base::WeakPtr<SpdySession> GetWeakPtr()
    [all...]
spdy_session_pool_unittest.cc 116 base::WeakPtr<SpdySession> session =
119 // Flush the SpdySession::OnReadComplete() task.
161 base::WeakPtr<SpdySession> session1 =
175 base::WeakPtr<SpdySession> session2 =
189 base::WeakPtr<SpdySession> session3 =
279 base::WeakPtr<SpdySession> session =
282 // Flush the SpdySession::OnReadComplete() task.
369 base::WeakPtr<SpdySession> session =
373 // Flush the SpdySession::OnReadComplete() task.
393 base::WeakPtr<SpdySession> session2
    [all...]
spdy_stream.h 38 class SpdySession;
66 // The SpdyStream is used by the SpdySession to represent each stream known
67 // on the SpdySession. This class provides interfaces for SpdySession to use.
69 // are initiated by the client, both the SpdySession and client object (such as
71 // initiated by the server, only the SpdySession will maintain any reference,
160 const base::WeakPtr<SpdySession>& session,
284 // Called at most once by the SpdySession when the initial response
293 // Called by the SpdySession (only after
300 // Called by the SpdySession when response data has been receive
    [all...]
spdy_stream_unittest.cc 53 base::WeakPtr<SpdySession> CreateDefaultSpdySession() {
150 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
192 base::WeakPtr<SpdySession> spdy_session(CreateDefaultSpdySession());
263 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
347 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
410 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
470 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
528 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
603 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession());
683 base::WeakPtr<SpdySession> session(CreateDefaultSpdySession())
    [all...]
spdy_stream.cc 81 const base::WeakPtr<SpdySession>& session,
219 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
239 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
254 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
285 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
310 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
317 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
347 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
393 // SpdySession guarantees that this is called at most once.
495 if (session_->flow_control_state() >= SpdySession::FLOW_CONTROL_STREAM)
    [all...]
spdy_websocket_stream.cc 21 const base::WeakPtr<SpdySession>& spdy_session, Delegate* delegate)
spdy_test_util_common.cc 273 const base::WeakPtr<SpdySession>& session,
493 base::WeakPtr<SpdySession> CreateSpdySessionHelper(
544 base::WeakPtr<SpdySession> spdy_session;
558 base::WeakPtr<SpdySession> CreateInsecureSpdySession(
576 base::WeakPtr<SpdySession> CreateSecureSpdySession(
641 base::WeakPtr<SpdySession> CreateFakeSpdySessionHelper(
647 base::WeakPtr<SpdySession> spdy_session;
663 base::WeakPtr<SpdySession> CreateFakeSpdySession(SpdySessionPool* pool,
    [all...]
spdy_write_queue_unittest.cc 62 // Makes a SpdyStream with the given priority and a NULL SpdySession
67 SPDY_BIDIRECTIONAL_STREAM, base::WeakPtr<SpdySession>(),
  /external/chromium_org/net/http/
http_stream_factory_impl_job.h 115 // existing SpdySession. In that case, the http and npn-spdy jobs will race.
312 // Initialized when we create a new SpdySession.
313 base::WeakPtr<SpdySession> new_spdy_session_;
315 // Initialized when we have an existing SpdySession.
316 base::WeakPtr<SpdySession> existing_spdy_session_;
http_network_transaction.h 34 class SpdySession;
http_stream_factory_impl.cc 266 const base::WeakPtr<SpdySession>& spdy_session,
http_stream_factory_impl_request.cc 294 const base::WeakPtr<SpdySession>& spdy_session,
370 // SpdySession or HttpPipelinedConnection (one that was not created by a job
380 // they complete? Or do we want to prevent connecting a new SpdySession if
http_stream_factory_impl_unittest.cc 248 const base::WeakPtr<SpdySession>& spdy_session)
254 SpdySession* spdy_session() { return spdy_session_.get(); }
257 base::WeakPtr<SpdySession> spdy_session_;
289 const base::WeakPtr<SpdySession>& spdy_session,
546 // Put a SpdySession in the pool.
657 // Set an existing SpdySession in the pool.
    [all...]
http_stream_factory_impl_job.cc 341 base::WeakPtr<SpdySession> spdy_session = new_spdy_session_;
771 base::WeakPtr<SpdySession> spdy_session =
775 // If we're preconnecting, but we already have a SpdySession, we don't
    [all...]
http_proxy_client_socket_pool.cc 307 base::WeakPtr<SpdySession> spdy_session =
  /external/chromium/net/http/
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;
  /external/chromium/net/spdy/
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,
  /external/chromium_org/net/url_request/
url_request_http_job_unittest.cc 185 WebSocketHandshakeStreamBase*(const base::WeakPtr<SpdySession>&,

Completed in 843 milliseconds

12 3