HomeSort by relevance Sort by last modified time
    Searched refs:connection_ (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium/app/sql/
transaction.cc 13 : connection_(connection),
19 connection_->RollbackTransaction();
27 is_open_ = connection_->BeginTransaction();
38 connection_->RollbackTransaction();
48 return connection_->CommitTransaction();
transaction.h 46 Connection* connection_; member in class:sql::Transaction
connection.cc 63 : 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.
connection.h 231 // sql::Statement stmt(connection_.GetCachedStatement(
307 Connection* connection() const { return connection_; }
322 Connection* connection_; member in class:sql::Connection::StatementRef
  /external/chromium/chrome/browser/debugger/
devtools_protocol_handler.cc 36 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;
devtools_protocol_handler.h 70 scoped_refptr<ListenSocket> connection_; member in class:DevToolsProtocolHandler
devtools_remote_listen_socket_unittest.cc 78 connection_(NULL),
255 connection_->Send(kChromeDevToolsHandshake);
261 connection_ = connection;
266 connection_ = NULL;
devtools_remote_listen_socket_unittest.h 116 ListenSocket* connection_; member in class:DevToolsRemoteListenSocketTester
  /external/chromium/net/http/
http_stream_factory_impl_job.cc 48 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_->socket())
    [all...]
http_stream_parser.cc 41 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_->socket()->Read(read_buf_
    [all...]
http_basic_stream.cc 23 connection_(connection),
35 parser_.reset(new HttpStreamParser(connection_.get(), request_info,
82 return new HttpBasicStream(connection_.release(), NULL, using_proxy_);
http_basic_stream.h 89 scoped_ptr<ClientSocketHandle> connection_; member in class:net::HttpBasicStream
http_stream_parser.h 187 ClientSocketHandle* const connection_; member in class:net::HttpStreamParser
http_stream_factory_impl_job.h 210 scoped_ptr<ClientSocketHandle> connection_; member in class:net::HttpStreamFactoryImpl::Job
  /external/chromium/net/tools/flip_server/
streamer_interface.cc 22 : connection_(connection),
60 connection_->InitSMConnection(connection_pool, sm_interface,
81 connection_->EnqueueDataFrame(df);
103 connection_->Cleanup("Server Reset");
176 connection_->client_ip());
http_interface.cc 24 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);
output_ordering.h 41 SMConnectionInterface* connection_; member in class:net::OutputOrdering
output_ordering.cc 18 connection_(connection) {
88 connection_->ReadyToSend();
  /external/chromium/net/base/
listen_socket_unittest.cc 26 connection_(NULL),
108 connection_->Release();
109 connection_ = NULL;
124 connection_->Send(kHelloWorld);
191 connection_ = connection;
192 connection_->AddRef();
listen_socket_unittest.h 103 ListenSocket* connection_; member in class:ListenSocketTester
  /external/chromium/chrome/browser/password_manager/
native_backend_kwallet_x.h 132 DBusGConnection* connection_; member in class:NativeBackendKWallet
native_backend_kwallet_x.cc 33 connection_(NULL),
44 connection_ = dbus_g_bus_get(DBUS_BUS_SESSION, &error_);
61 dbus_g_proxy_new_for_name(connection_, kKLauncherServiceName,
95 proxy_ = dbus_g_proxy_new_for_name(connection_, kKWalletServiceName,
  /external/chromium/net/spdy/
spdy_session.cc 254 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_->socket()
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_whitebox_unittest.cc 28 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/
port.cc 466 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 564 milliseconds

1 2