Home
last modified time | relevance | path

Searched refs:session_ (Results 1 – 23 of 23) sorted by relevance

/external/chromium/base/
Devent_trace_controller_win.cc9 EtwTraceController::EtwTraceController() : session_(NULL) { in EtwTraceController()
18 DCHECK(NULL == session_ && session_name_.empty()); in Start()
23 HRESULT hr = Start(session_name, prop, &session_); in Start()
32 DCHECK(NULL == session_ && session_name_.empty()); in StartFileSession()
49 DCHECK(NULL == session_ && session_name_.empty()); in StartRealtimeSession()
61 ULONG error = ::EnableTrace(TRUE, flags, level, &provider, session_); in EnableProvider()
66 ULONG error = ::EnableTrace(FALSE, 0, 0, &provider, session_); in DisableProvider()
75 ULONG error = ::ControlTrace(session_, NULL, properties->get(), in Stop()
80 session_ = NULL; in Stop()
90 ULONG error = ::ControlTrace(session_, NULL, properties->get(), in Flush()
Devent_trace_controller_win.h158 TRACEHANDLE session() const { return session_; } in session()
163 TRACEHANDLE session_; variable
/external/chromium/net/http/
Dhttp_network_layer.cc56 session_(NULL), in HttpNetworkLayer()
67 session_(session), in HttpNetworkLayer()
70 DCHECK(session_.get()); in HttpNetworkLayer()
94 if (suspend && session_) in Suspend()
95 session_->tcp_socket_pool()->CloseIdleSockets(); in Suspend()
99 if (!session_) { in GetSession()
102 session_ = new HttpNetworkSession( in GetSession()
111 return session_; in GetSession()
Dhttp_network_transaction.cc141 session_(session), in HttpNetworkTransaction()
201 session_->ssl_client_auth_cache()->Add(GetHostAndPort(request_->url), in RestartWithCertificate()
268 session_->auth_cache()->Add(AuthOrigin(target), auth_handler_[target], in PrepareForAuthRestart()
393 session_->proxy_service()->CancelPacRequest(pac_request_); in ~HttpNetworkTransaction()
574 return session_->proxy_service()->ResolveProxy( in DoResolveProxy()
664 if (session_->fixed_https_port() != 0) in DoInitConnection()
665 port = session_->fixed_https_port(); in DoInitConnection()
666 } else if (session_->fixed_http_port() != 0) { in DoInitConnection()
667 port = session_->fixed_http_port(); in DoInitConnection()
695 if (session_->flip_session_pool()->HasSession(resolve_info)) in DoInitConnection()
[all …]
Dhttp_network_layer.h81 scoped_refptr<HttpNetworkSession> session_; variable
Dhttp_network_transaction.h282 scoped_refptr<HttpNetworkSession> session_; variable
/external/v8/src/
Ddebug-agent.cc107 if (session_ != NULL) { in CreateSession()
116 session_ = new DebuggerAgentSession(this, client); in CreateSession()
118 session_->Start(); in CreateSession()
126 if (session_ != NULL) { in CloseSession()
127 session_->Shutdown(); in CloseSession()
128 session_->Join(); in CloseSession()
129 delete session_; in CloseSession()
130 session_ = NULL; in CloseSession()
139 if (session_ != NULL) { in DebuggerMessage()
141 session_->DebuggerMessage(Vector<uint16_t>(const_cast<uint16_t*>(*val), in DebuggerMessage()
[all …]
Ddebug-agent.h49 session_access_(OS::CreateMutex()), session_(NULL), in DebuggerAgent()
75 DebuggerAgentSession* session_; // Current active session if any. variable
/external/chromium/net/flip/
Dflip_stream_unittest.cc82 : session_(CreateSession(&session_deps_)), in FlipStreamTest()
83 pool_peer_(session_->flip_session_pool()) {} in FlipStreamTest()
88 session_->flip_session_pool()->Get(resolve_info, session_)); in CreateFlipSession()
97 scoped_refptr<HttpNetworkSession> session_; member in net::__anon9df071470111::FlipStreamTest
Dflip_network_transaction.cc33 session_(session), in FlipNetworkTransaction()
225 if (session_->fixed_https_port() != 0) in DoInitConnection()
226 port = session_->fixed_https_port(); in DoInitConnection()
227 } else if (session_->fixed_http_port() != 0) { in DoInitConnection()
228 port = session_->fixed_http_port(); in DoInitConnection()
236 flip_ = session_->flip_session_pool()->Get(resolve_info, session_); in DoInitConnection()
Dflip_transaction_factory.h16 : session_(session) { in FlipTransactionFactory()
22 return new FlipNetworkTransaction(session_); in CreateTransaction()
31 scoped_refptr<HttpNetworkSession> session_;
Dflip_stream.cc21 session_(session), in FlipStream()
42 session_->CancelStream(stream_id_); in ~FlipStream()
156 session_->CancelStream(stream_id_); in Cancel()
371 return session_->WriteStreamData(stream_id_, in DoSendBody()
Dflip_session.cc195 session_(session), in FlipSession()
213 session_->ssl_config_service()->GetSSLConfig(&ssl_config_); in FlipSession()
237 DCHECK(!session_->flip_session_pool()->HasSession( in ~FlipSession()
286 session_->tcp_socket_pool(), load_log); in Connect()
483 socket = session_->socket_factory()->CreateSSLClientSocket( in OnTCPConnect()
776 session_->flip_session_pool()->Remove(this); in CloseSessionOnError()
Dflip_network_transaction.h102 scoped_refptr<HttpNetworkSession> session_; variable
Dflip_stream.h173 scoped_refptr<FlipSession> session_; variable
Dflip_session.h172 scoped_refptr<HttpNetworkSession> session_; variable
/external/chromium/net/ftp/
Dftp_network_layer.cc14 : session_(new FtpNetworkSession(host_resolver)), in FtpNetworkLayer()
32 session_, ClientSocketFactory::GetDefaultFactory()); in CreateTransaction()
Dftp_network_layer.h29 scoped_refptr<FtpNetworkSession> session_;
Dftp_network_transaction_unittest.cc557 session_(new FtpNetworkSession(host_resolver_)), in FtpNetworkTransactionTest()
558 transaction_(session_.get(), &mock_socket_factory_) { in FtpNetworkTransactionTest()
612 scoped_refptr<FtpNetworkSession> session_; member in net::FtpNetworkTransactionTest
Dftp_network_transaction.h176 scoped_refptr<FtpNetworkSession> session_; variable
Dftp_network_transaction.cc56 session_(session), in FtpNetworkTransaction()
/external/chromium/net/tools/fetch/
Dhttp_server.cc9 : ALLOW_THIS_IN_INITIALIZER_LIST(session_(new HttpSession(ip, port))) { in HttpServer()
Dhttp_server.h20 scoped_ptr<HttpSession> session_;