Searched refs:session_ (Results 1 - 25 of 129) sorted by relevance

123456

/external/chromium_org/content/browser/dom_storage/
H A Dsession_storage_namespace_impl.cc14 : session_(new DOMStorageSession(context->context())) {
19 : session_(DOMStorageSession::CloneFrom(context->context(),
25 : session_(new DOMStorageSession(context->context(), persistent_id)) {
30 : session_(new DOMStorageSession(
31 master_session_storage_namespace->session_.get())) {
36 return session_->namespace_id();
40 return session_->persistent_namespace_id();
44 session_->SetShouldPersist(should_persist);
48 return session_->should_persist();
52 return new SessionStorageNamespaceImpl(session_
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dutil_unittest.cc29 session_ << "[START]";
32 session_ << "[OPENING]";
35 session_ << "[OPEN]";
38 session_ << "[CLOSED]";
44 session_ << "[ERROR-XML]";
47 session_ << "[ERROR-STREAM]";
50 session_ << "[ERROR-VERSION]";
53 session_ << "[ERROR-UNAUTHORIZED]";
56 session_ << "[ERROR-TLS]";
59 session_ << "[ERRO
[all...]
/external/chromium_org/net/http/
H A Dhttp_network_session_peer.cc19 : session_(session) {}
25 session_->normal_socket_pool_manager_.swap(socket_pool_manager);
29 session_->proxy_service_ = proxy_service;
34 session_->http_stream_factory_.swap(http_stream_factory);
39 session_->http_stream_factory_for_websocket_.swap(http_stream_factory);
H A Dhttp_network_layer.cc24 : session_(session),
26 DCHECK(session_.get());
73 HttpNetworkSession* HttpNetworkLayer::GetSession() { return session_.get(); }
78 if (session_.get())
79 session_->CloseIdleConnections();
/external/chromium_org/net/tools/quic/
H A Dquic_client_session_test.cc46 session_.reset(new QuicClientSession(DefaultQuicConfig(), connection_));
47 session_->InitializeSession(
50 session_->config()->SetDefaults();
54 ASSERT_TRUE(session_->CryptoConnect());
56 connection_, session_->GetCryptoStream());
60 scoped_ptr<QuicClientSession> session_; member in class:net::tools::test::__anon9763::ToolsQuicClientSessionTest
72 session_->config()->set_max_streams_per_connection(1, 1);
78 session_->CreateOutgoingDataStream();
80 EXPECT_FALSE(session_->CreateOutgoingDataStream());
83 session_
[all...]
H A Dquic_server_session_test.cc83 session_.reset(new QuicServerSession(config_, connection_, &owner_));
88 session_->InitializeSession(crypto_config_);
98 scoped_ptr<QuicServerSession> session_; member in class:net::tools::test::__anon9769::QuicServerSessionTest
128 session_->OnStreamFrames(frames);
129 EXPECT_EQ(1u, session_->GetNumOpenStreams());
136 EXPECT_EQ(0u, session_->GetNumOpenStreams());
142 EXPECT_EQ(0u, session_->GetNumOpenStreams());
152 EXPECT_EQ(0u, session_->GetNumOpenStreams());
161 EXPECT_EQ(0u, session_->GetNumOpenStreams());
173 EXPECT_EQ(2u, session_
[all...]
H A Dquic_spdy_client_stream_test.cc32 session_(DefaultQuicConfig(), connection_),
34 session_.InitializeSession(
46 session_.config()->SetInitialFlowControlWindowToSend(
48 session_.config()->SetInitialStreamFlowControlWindowToSend(
50 session_.config()->SetInitialSessionFlowControlWindowToSend(
52 stream_.reset(new QuicSpdyClientStream(3, &session_));
56 QuicClientSession session_; member in class:net::tools::test::__anon9771::QuicSpdyClientStreamTest
/external/chromium_org/net/quic/
H A Dquic_session_test.cc111 : session_(session),
116 session_->MarkWriteBlocked(stream_id_, kSomeMiddlePriority);
120 QuicSession* const session_; member in class:net::test::__anon9488::StreamBlocker
192 session_(connection_) {
193 session_.config()->SetInitialFlowControlWindowToSend(
195 session_.config()->SetInitialStreamFlowControlWindowToSend(
197 session_.config()->SetInitialSessionFlowControlWindowToSend(
231 EXPECT_FALSE(session_.IsClosedStream(i)) << " stream id: " << i;
233 EXPECT_TRUE(session_.IsClosedStream(i)) << " stream id: " << i;
239 session_
246 TestSession session_; member in class:net::test::__anon9488::QuicSessionTest
[all...]
H A Dquic_client_session_test.cc46 session_(connection_, GetSocket().Pass(), NULL,
51 session_.InitializeSession(QuicServerId(kServerHostname, kServerPort, false,
54 session_.config()->SetDefaults();
59 session_.CloseSessionOnError(ERR_ABORTED);
71 session_.CryptoConnect(false, callback_.callback()));
73 connection_, session_.GetCryptoStream());
82 QuicClientSession session_; member in class:net::test::__anon9449::QuicClientSessionTest
102 QuicReliableClientStream* stream = session_.CreateOutgoingDataStream();
106 EXPECT_FALSE(session_.CreateOutgoingDataStream());
109 session_
[all...]
H A Dreliable_quic_stream_test.cc114 session_.reset(new StrictMock<MockSession>(connection_));
119 session_->config(), initial_flow_control_window_bytes_);
121 session_->config(), initial_flow_control_window_bytes_);
123 stream_.reset(new TestStream(kHeadersStreamId, session_.get(),
126 QuicSessionPeer::GetWriteBlockedStreams(session_.get());
143 scoped_ptr<MockSession> session_; member in class:net::test::__anon9503::ReliableQuicStreamTest
161 EXPECT_CALL(*session_, WritevData(kHeadersStreamId, _, _, _, _, _)).WillOnce(
181 EXPECT_CALL(*session_, WritevData(kHeadersStreamId, _, _, _, _, _))
194 EXPECT_CALL(*session_, WritevData(kHeadersStreamId, _, _, _, _, _))
205 EXPECT_CALL(*session_, WritevDat
[all...]
/external/chromium_org/remoting/protocol/
H A Dconnection_to_client_unittest.cc30 session_ = new FakeSession();
33 viewer_.reset(new ConnectionToClient(session_));
40 session_->event_handler()->OnSessionStateChange(Session::CONNECTED);
41 session_->event_handler()->OnSessionStateChange(Session::AUTHENTICATED);
58 FakeSession* session_; member in class:remoting::protocol::ConnectionToClientTest
73 session_->fake_channel_factory().GetFakeChannel(kVideoChannelName));
74 EXPECT_FALSE(session_->fake_channel_factory()
98 session_->event_handler()->OnSessionStateChange(Session::CLOSED);
102 session_->set_error(SESSION_REJECTED);
103 session_
[all...]
H A Dconnection_to_client.cc26 session_(session) {
27 session_->SetEventHandler(this);
40 return session_.get();
50 session_->Close();
123 session_.get(), session_->config().control_config(),
131 session_.get(), session_->config().event_config(),
140 session_.get(), session_
[all...]
H A Dconnection_to_host.cc41 if (session_.get())
42 session_.reset();
96 return session_->config();
156 session_ = session_manager_->Connect(
158 session_->SetEventHandler(this);
188 session_.get(), session_->config().control_config(),
196 session_.get(), session_->config().event_config(),
202 video_dispatcher_->Init(session_
[all...]
/external/chromium_org/net/dns/
H A Ddns_client.cc29 session_ = NULL;
35 session_ = new DnsSession(config,
39 factory_ = DnsTransactionFactory::CreateFactory(session_.get());
44 return session_.get() ? &session_->config() : NULL;
48 return session_.get() ? factory_.get() : NULL;
56 scoped_refptr<DnsSession> session_; member in class:net::__anon9186::DnsClientImpl
/external/chromium_org/net/ftp/
H A Dftp_network_layer.cc14 : session_(new FtpNetworkSession(host_resolver)),
31 return new FtpNetworkTransaction(session_.get(),
40 session_->connection_manager()->CloseIdleSockets();
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
H A Dpairingsessiontest.cc86 session_(&wire_, &context_, &challenge_) {
99 EXPECT_CALL(session_, DoInitializationPhase());
101 session_.DoPair(&listener_);
109 StrictMock<TestPairingSession> session_; member in class:polo::pairing::PairingSessionTest
121 session_.TestSetConfiguration(configuration);
123 ASSERT_TRUE(session_.GetConfiguration());
125 session_.GetConfiguration()->encoding().encoding_type());
126 ASSERT_EQ(8, session_.GetConfiguration()->encoding().symbol_length());
128 session_.GetConfiguration()->client_role());
130 ASSERT_TRUE(session_
[all...]
H A Dserverpairingsessiontest.cc59 session_(&wire_, &context_, &challenge_) {
74 session_.DoPair(&listener_);
82 StrictMock<TestServerPairingSession> session_; member in class:polo::pairing::ServerPairingSessionTest
94 session_.TestDoInitializationPhase();
104 session_.OnPairingRequestMessage(message);
114 session_.OnOptionsMessage(message);
119 session_.AddInputEncoding(encoding);
120 session_.AddOutputEncoding(encoding);
133 session_.OnConfigurationMessage(message);
H A Dclientpairingsessiontest.cc64 session_(&wire_, &context_, &challenge_) {
83 session_.DoPair(&listener_);
91 StrictMock<TestClientPairingSession> session_; member in class:polo::pairing::ClientPairingSessionTest
104 session_.TestSetConfiguration(configuration);
109 session_.TestDoConfigurationPhase();
119 session_.OnPairingRequestAckMessage(message);
124 session_.AddInputEncoding(encoding);
125 session_.AddOutputEncoding(encoding);
138 session_.OnOptionsMessage(message);
147 session_
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dsession_info_unittest.cc25 session_.Reset();
59 VCMSessionInfo session_; member in class:webrtc::TestSessionInfo
105 EXPECT_GE(session_.SessionLength(),
157 session_.InsertPacket(packet_,
161 EXPECT_FALSE(session_.HaveLastPacket());
162 EXPECT_EQ(kVideoFrameKey, session_.FrameType());
168 session_.InsertPacket(packet_,
172 EXPECT_TRUE(session_.HaveLastPacket());
173 EXPECT_EQ(packet_.seqNum, session_.HighSequenceNumber());
174 EXPECT_EQ(0xFFFE, session_
[all...]
/external/chromium_org/extensions/browser/api/bluetooth_low_energy/
H A Dbluetooth_low_energy_notify_session.cc28 session_(session.release()) {
36 return session_.get();
/external/chromium_org/remoting/webapp/
H A Dcast_extension_handler.js33 this.session_ = null;
98 if (this.session_) {
121 this.session_.sendMessage(this.kCastNamespace_,
185 this.session_ = session;
186 if (this.session_.media.length != 0) {
190 this.onMediaDiscovered('sessionListener', this.session_.media[0]);
192 this.session_.addMediaListener(
194 this.session_.addUpdateListener(this.sessionUpdateListener.bind(this));
195 this.session_.addMessageListener(this.kCastNamespace_,
197 this.session_
[all...]
/external/chromium_org/chrome/browser/resources/history/
H A Dother_devices.js84 this.session_ = session;
111 this.session_.collapsed = !this.session_.collapsed;
114 [this.session_.tag, this.session_.collapsed]);
117 var eventId = this.session_.collapsed ?
128 chrome.send('openForeignSession', [this.session_.tag]);
138 this.collapseItem_.hidden = this.session_.collapsed;
139 this.expandItem_.hidden = !this.session_.collapsed;
155 this.session_
[all...]
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivetv3_session_unittest.cc33 : session_(scoped_ptr<PrivetHTTPClient>(), &delegate_) {}
43 session_.ConfirmCode(code);
54 PrivetV3Session session_; member in class:local_discovery::__anon4179::PrivetV3SessionTest
63 session_.Start();
74 session_.Start();
/external/chromium_org/net/spdy/
H A Dspdy_stream.cc95 session_(session),
161 session_->CloseActiveStream(stream_id_, ERR_SPDY_PROTOCOL_ERROR);
188 session_->CloseActiveStream(stream_id_, OK);
204 scoped_ptr<SpdyFrame> frame(session_->CreateSynStream(
217 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
237 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
252 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
267 session_->ResetStream(stream_id_, RST_STREAM_FLOW_CONTROL_ERROR, desc);
283 DCHECK_GE(session_->flow_control_state(), SpdySession::FLOW_CONTROL_STREAM);
308 DCHECK_GE(session_
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dbasicportallocator.cc153 BasicPortAllocatorSession* session_; member in class:cricket::AllocationSequence
733 : session_(session),
759 udp_socket_.reset(session_->socket_factory()->CreateUdpSocket(
760 rtc::SocketAddress(ip_, 0), session_->allocator()->min_port(),
761 session_->allocator()->max_port()));
778 session_->network_thread()->Clear(this);
816 session_->network_thread()->Post(this, MSG_ALLOCATION_PHASE);
823 session_->network_thread()->Clear(this, MSG_ALLOCATION_PHASE);
828 ASSERT(rtc::Thread::Current() == session_->network_thread());
866 session_
[all...]

Completed in 526 milliseconds

123456