HomeSort by relevance Sort by last modified time
    Searched defs:spdy_session (Results 1 - 14 of 14) sorted by null

  /external/chromium/net/http/
http_proxy_client_socket_pool.cc 23 #include "net/spdy/spdy_session.h"
322 scoped_refptr<SpdySession> spdy_session; local
330 spdy_session = spdy_pool->Get(pair, net_log());
335 net_log(), OK, &spdy_session, /*using_ssl_*/ true);
341 return spdy_session->CreateStream(params_->request_url(),
343 &spdy_stream_, spdy_session->net_log(),
http_stream_factory_impl_unittest.cc 22 #include "net/spdy/spdy_session.h"
295 scoped_refptr<SpdySession> spdy_session = local
http_stream_factory_impl_job.cc 28 #include "net/spdy/spdy_session.h"
206 scoped_refptr<SpdySession> spdy_session = new_spdy_session_; local
210 spdy_session, spdy_session_direct_, ssl_config_, proxy_info_,
214 request_->OnSpdySessionReady(this, spdy_session, spdy_session_direct_);
742 scoped_refptr<SpdySession> spdy_session; local
748 spdy_session = spdy_pool->Get(pair, net_log_);
755 spdy_session = spdy_pool->Get(pair, net_log_);
760 if (spdy_session.get()) {
772 &spdy_session, using_ssl_);
775 new_spdy_session_ = spdy_session;
    [all...]
http_network_transaction_unittest.cc 45 #include "net/spdy/spdy_session.h"
7052 scoped_refptr<SpdySession> spdy_session = local
8304 scoped_refptr<SpdySession> spdy_session = local
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_pool_unittest.cc 27 #include "net/spdy/spdy_session.h"
715 scoped_refptr<SpdySession> spdy_session; local
718 &spdy_session, true);
  /external/chromium/net/spdy/
spdy_session_pool.cc 13 #include "net/spdy/spdy_session.h"
64 scoped_refptr<SpdySession> spdy_session; local
68 spdy_session = GetFromAlias(host_port_proxy_pair, net_log, true);
69 if (spdy_session) {
76 "session", spdy_session->net_log().source())));
77 return spdy_session;
87 spdy_session = GetExistingSession(list, net_log);
91 "session", spdy_session->net_log().source())));
92 return spdy_session;
95 spdy_session = new SpdySession(host_port_proxy_pair, this, &spdy_settings_
191 scoped_refptr<SpdySession> spdy_session = list->front(); local
236 scoped_refptr<SpdySession> spdy_session = GetExistingSession(list, net_log); local
    [all...]
  /external/chromium_org/net/http/
http_proxy_client_socket_pool.cc 23 #include "net/spdy/spdy_session.h"
305 base::WeakPtr<SpdySession> spdy_session = local
308 if (spdy_session) {
318 net_log(), OK, &spdy_session, /*using_ssl_*/ true);
325 SPDY_BIDIRECTIONAL_STREAM, spdy_session, params_->request_url(),
326 params_->destination().priority(), spdy_session->net_log(), callback_);
http_stream_factory_impl_unittest.cc 31 #include "net/spdy/spdy_session.h"
204 explicit WebSocketSpdyStream(const base::WeakPtr<SpdySession>& spdy_session)
205 : MockWebSocketStream(kStreamTypeSpdy), spdy_session_(spdy_session) {}
209 SpdySession* spdy_session() { return spdy_session_.get(); } function in class:net::__anon11212::WebSocketSpdyStream
240 const base::WeakPtr<SpdySession>& spdy_session,
242 return new WebSocketSpdyStream(spdy_session);
    [all...]
http_stream_factory_impl_job.cc 41 #include "net/spdy/spdy_session.h"
336 base::WeakPtr<SpdySession> spdy_session = new_spdy_session_;
340 spdy_session, spdy_session_direct_, server_ssl_config_, proxy_info_,
344 request_->OnNewSpdySessionReady(this, spdy_session, spdy_session_direct_);
767 base::WeakPtr<SpdySession> spdy_session = local
770 if (spdy_session && CanUseExistingSpdySession()) {
777 existing_spdy_session_ = spdy_session;
1102 base::WeakPtr<SpdySession> spdy_session; local
    [all...]
http_network_transaction_unittest.cc 57 #include "net/spdy/spdy_session.h"
8838 base::WeakPtr<SpdySession> spdy_session = local
9997 base::WeakPtr<SpdySession> spdy_session = local
    [all...]
  /external/chromium_org/net/socket/
ssl_client_socket_pool_unittest.cc 29 #include "net/spdy/spdy_session.h"
770 base::WeakPtr<SpdySession> spdy_session = local
823 base::WeakPtr<SpdySession> spdy_session = local
    [all...]
  /external/chromium_org/net/websockets/
websocket_job.cc 18 #include "net/spdy/spdy_session.h"
600 base::WeakPtr<SpdySession> spdy_session = local
602 if (!spdy_session)
608 bool use_ssl = spdy_session->GetSSLInfo(
614 spdy_protocol_version_ = spdy_session->GetProtocolVersion();
615 spdy_websocket_stream_.reset(new SpdyWebSocketStream(spdy_session, this));
  /external/chromium_org/net/spdy/
spdy_test_util_common.cc 24 #include "net/spdy/spdy_session.h"
547 base::WeakPtr<SpdySession> spdy_session; local
551 key, connection.Pass(), net_log, OK, &spdy_session,
553 EXPECT_EQ(expected_status == OK, spdy_session != NULL);
556 return spdy_session;
650 base::WeakPtr<SpdySession> spdy_session; local
657 key, handle.Pass(), BoundNetLog(), OK, &spdy_session,
659 EXPECT_EQ(expected_status == OK, spdy_session != NULL);
661 return spdy_session;
    [all...]
spdy_network_transaction_unittest.cc 29 #include "net/spdy/spdy_session.h"
545 base::WeakPtr<SpdySession> spdy_session = local
547 ASSERT_TRUE(spdy_session != NULL);
548 EXPECT_EQ(0u, spdy_session->num_active_streams());
549 EXPECT_EQ(0u, spdy_session->num_unclaimed_pushed_streams());
    [all...]

Completed in 709 milliseconds