Searched refs:connection_ (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium/app/sql/
H A Dtransaction.cc13 : connection_(connection),
19 connection_->RollbackTransaction();
27 is_open_ = connection_->BeginTransaction();
38 connection_->RollbackTransaction();
48 return connection_->CommitTransaction();
H A Dtransaction.h46 Connection* connection_; member in class:sql::Transaction
H A Dconnection.cc63 : connection_(NULL),
69 : connection_(connection),
71 connection_->StatementRefCreated(this);
75 if (connection_)
76 connection_->StatementRefDeleted(this);
85 connection_ = NULL; // The connection may be getting deleted.
H A Dconnection.h231 // sql::Statement stmt(connection_.GetCachedStatement(
307 Connection* connection() const { return connection_; }
322 Connection* connection_; member in class:sql::Connection::StatementRef
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_stream_importer.js72 this.connection_ = undefined;
88 if (!this.connection_)
90 this.connection_.removeEventListener('open',
92 this.connection_.removeEventListener('close',
94 this.connection_.removeEventListener('error',
96 this.connection_.removeEventListener('message',
192 if (this.connection_ !== undefined &&
193 this.connection_.readyState == WebSocket.OPEN) {
208 this.connection_ = wsConnection;
209 this.connection_
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddevtools_protocol_handler.cc36 connection_(NULL),
44 DCHECK(connection_.get() == NULL);
67 connection_ = NULL;
103 if (connection_ != NULL) {
104 connection_->Send(message.ToString());
110 connection_ = connection;
115 connection_ = NULL;
H A Ddevtools_protocol_handler.h70 scoped_refptr<ListenSocket> connection_; member in class:DevToolsProtocolHandler
H A Ddevtools_remote_listen_socket_unittest.cc78 connection_(NULL),
255 connection_->Send(kChromeDevToolsHandshake);
261 connection_ = connection;
266 connection_ = NULL;
H A Ddevtools_remote_listen_socket_unittest.h116 ListenSocket* connection_; member in class:DevToolsRemoteListenSocketTester
/external/chromium/net/http/
H A Dhttp_stream_factory_impl_job.cc48 connection_(new ClientSocketHandle),
76 connection_->socket()->Disconnect();
77 connection_.reset();
113 return connection_->GetLoadState();
181 DCHECK(connection_.get() && connection_->socket());
183 static_cast<SSLClientSocket*>(connection_->socket());
317 DCHECK(connection_.get());
318 DCHECK(connection_->socket());
322 static_cast<HttpProxyClientSocket*>(connection_
[all...]
H A Dhttp_stream_parser.cc41 connection_(connection),
76 int result = connection_->socket()->GetPeerAddress(&address);
130 if (not_reusable && connection_->socket())
131 connection_->socket()->Disconnect();
132 connection_->Reset();
273 result = connection_->socket()->Write(request_headers_,
291 return connection_->socket()->Write(chunk_buf_, chunk_length_,
326 return connection_->socket()->Write(chunk_buf_, chunk_length_,
335 result = connection_->socket()->Write(request_body_->buf(), buf_len,
354 return connection_
[all...]
H A Dhttp_basic_stream.cc23 connection_(connection),
35 parser_.reset(new HttpStreamParser(connection_.get(), request_info,
82 return new HttpBasicStream(connection_.release(), NULL, using_proxy_);
H A Dhttp_basic_stream.h89 scoped_ptr<ClientSocketHandle> connection_; member in class:net::HttpBasicStream
H A Dhttp_stream_parser.h187 ClientSocketHandle* const connection_; member in class:net::HttpStreamParser
H A Dhttp_stream_factory_impl_job.h210 scoped_ptr<ClientSocketHandle> connection_; member in class:net::HttpStreamFactoryImpl::Job
/external/chromium/net/tools/flip_server/
H A Dstreamer_interface.cc22 : connection_(connection),
60 connection_->InitSMConnection(connection_pool, sm_interface,
81 connection_->EnqueueDataFrame(df);
103 connection_->Cleanup("Server Reset");
176 connection_->client_ip());
H A Dhttp_interface.cc24 connection_(connection),
61 << connection_->server_ip_ << ":"
62 << connection_->server_port_ << " ";
117 connection_->InitSMConnection(connection_pool,
142 connection_->EnqueueDataFrame(data_frame);
171 << "to: " << connection_->server_ip_ << ":"
172 << connection_->server_port_ << " ";
192 connection_->Cleanup("request complete");
323 connection_->EnqueueDataFrame(df);
H A Doutput_ordering.h41 SMConnectionInterface* connection_; member in class:net::OutputOrdering
H A Doutput_ordering.cc18 connection_(connection) {
88 connection_->ReadyToSend();
/external/chromium/net/base/
H A Dlisten_socket_unittest.cc26 connection_(NULL),
108 connection_->Release();
109 connection_ = NULL;
124 connection_->Send(kHelloWorld);
191 connection_ = connection;
192 connection_->AddRef();
H A Dlisten_socket_unittest.h103 ListenSocket* connection_; member in class:ListenSocketTester
/external/chromium/chrome/browser/password_manager/
H A Dnative_backend_kwallet_x.h132 DBusGConnection* connection_; member in class:NativeBackendKWallet
/external/chromium/net/spdy/
H A Dspdy_session.cc254 connection_(new ClientSocketHandle),
304 if (connection_->is_initialized()) {
306 connection_->socket()->Disconnect();
328 connection_.reset(connection);
626 return connection_->GetLoadState();
732 CHECK(connection_.get());
733 CHECK(connection_->socket());
734 int bytes_read = connection_->socket()->Read(read_buffer_.get(),
827 int rv = connection_->socket()->Write(in_flight_write_.buffer(),
949 if (!connection_
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_thread2_whitebox_unittest.cc28 context_ = new SyncSessionContext(connection_.get(), syncdb_.manager(),
91 scoped_ptr<MockConnectionManager> connection_; member in class:browser_sync::SyncerThread2WhiteboxTest
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dport.cc466 explicit ConnectionRequest(Connection* connection) : connection_(connection) {
476 std::string username = connection_->remote_candidate().username();
477 username.append(connection_->port()->username_fragment());
483 connection_->OnConnectionRequestResponse(this, response);
487 connection_->OnConnectionRequestErrorResponse(this, response);
491 connection_->OnConnectionRequestTimeout(this);
502 Connection* connection_; member in class:cricket::ConnectionRequest

Completed in 3337 milliseconds

12