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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2002-03-12-StructInitialize.c 8 } Connection;
10 Connection link[3]
2002-03-12-StructInitializer.c 12 } Connection;
14 Connection link[3]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Server/public/
ConnectionHandler.h 5 * Interface for connection handlers used by Server.
36 #include "Connection.h"
46 * Handle connection activities.
47 * The connection handler shall process pending connection activities.
49 * @param [in] connection Reference to the connection which has data to process.
52 Connection *connection
56 * Connection has been closed
    [all...]
  /external/smack/src/org/jivesoftware/smack/
ConnectionCreationListener.java 24 * Implementors of this interface will be notified when a new {@link Connection}
25 * has been created. The newly created connection will not be actually connected to
26 * the server. Use {@link Connection#addConnectionCreationListener(ConnectionCreationListener)}
34 * Notification that a new connection has been created. The new connection
37 * @param connection the newly created connection.
39 public void connectionCreated(Connection connection);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/
MobiCoreDriverDaemon.h 50 Connection *conn;
56 Connection *conn,
98 Connection *connection
102 Connection *connection
128 Connection *connection,
153 Connection *connection
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
CollectionNode.java 22 import org.jivesoftware.smack.Connection;
26 CollectionNode(Connection connection, String nodeId)
28 super(connection, nodeId);
  /external/chromium_org/chrome/browser/predictors/
predictor_table_base.h 12 class Connection;
30 void Initialize(sql::Connection* db);
32 sql::Connection* DB();
42 sql::Connection* db_;
  /external/chromium/app/sql/
transaction.h 13 class Connection;
21 explicit Transaction(Connection* connection);
46 Connection* connection_;
connection.cc 5 #include "app/sql/connection.h"
62 Connection::StatementRef::StatementRef()
67 Connection::StatementRef::StatementRef(Connection* connection,
69 : connection_(connection),
74 Connection::StatementRef::~StatementRef() {
80 void Connection::StatementRef::Close() {
85 connection_ = NULL; // The connection may be getting deleted.
88 Connection::Connection(
    [all...]
  /external/chromium_org/components/webdata/common/
web_database_table.h 12 class Connection;
36 virtual bool Init(sql::Connection* db, sql::MetaTable* meta_table);
59 sql::Connection* db_;
  /external/chromium_org/sql/test/
error_callback_support.h 8 #include "sql/connection.h"
24 ScopedErrorCallback(sql::Connection* db,
25 const sql::Connection::ErrorCallback& cb);
29 sql::Connection* db_;
error_callback_support.cc 16 sql::Connection* db,
17 const sql::Connection::ErrorCallback& cb)
  /external/chromium_org/sql/
transaction.h 13 class Connection;
22 // Nested transactions are supported. See sql::Connection::BeginTransaction
24 explicit Transaction(Connection* connection);
49 Connection* connection_;
recovery.h 10 #include "sql/connection.h"
46 // deadlock, all transactions on |connection| are rolled back.
49 // original connection (except for breaking the transactions). The
53 // from the connection.
54 // TODO(shess): Allow specifying the connection point?
56 Connection* connection,
77 sql::Connection* db() { return &recover_db_; }
80 explicit Recovery(Connection* connection);
    [all...]
  /libcore/luni/src/main/java/javax/sql/
DataSource.java 20 import java.sql.Connection;
25 * An interface for the creation of {@code Connection} objects which represent a
26 * connection to a database. This interface is an alternative to the {@code
37 * <li><i>Standard {@code DataSource}</i>: produces standard {@code Connection}
39 * <li><i>Connection Pool {@code DataSource}</i>: produces {@code
40 * PooledConnection} objects which require a connection pool manager as an
45 * component. {@code XAConnection} objects also provide connection pooling
56 * Creates a connection to the database represented by this {@code
59 * @return a {@code Connection} object which is a connection to th
    [all...]
PooledConnection.java 20 import java.sql.Connection;
30 * process both to establish a connection to a database and to destroy the
31 * connection. Reusing connections through a pool is a way of improving system
36 * use by a component called a connection pool manager, typically part of the
40 * {@link DataSource#getConnection} method. Behind the scenes, the connection
41 * pool manager will get a {@code PooledConnection} object from its connection
42 * pool and passes back a connection object that wraps or references the {@code
47 * application calls the {@link Connection#close} method. The connection pool
48 * manager is notified via a {@link ConnectionEvent} from the connection tha
    [all...]
RowSetInternal.java 20 import java.sql.Connection;
32 * Gets the connection associated with this {@code RowSet} object.
34 * @return the connection or {@code null}.
38 public Connection getConnection() throws SQLException;
  /external/chromium_org/chrome/browser/extensions/activity_log/
database_string_table.h 14 class Connection;
38 bool Initialize(sql::Connection* connection);
44 bool StringToInt(sql::Connection* connection,
52 bool IntToString(sql::Connection* connection, int64 id, std::string* value);
  /external/chromium_org/ppapi/proxy/
connection.h 19 struct Connection {
20 Connection() : browser_sender(0),
25 Connection(IPC::Sender* browser, IPC::Sender* renderer)
31 Connection(IPC::Sender* browser, IPC::Sender* renderer, int routing_id)
  /external/chromium/chrome/browser/history/
archived_database.h 9 #include "app/sql/connection.h"
32 // Initializes the database connection. This must return true before any other
44 virtual sql::Connection& GetDB();
56 sql::Connection db_;
in_memory_database.h 9 #include "app/sql/connection.h"
36 virtual sql::Connection& GetDB();
39 // Initializes the database connection, this is the shared code between
43 sql::Connection db_;
  /external/chromium/chrome/browser/webdata/
web_database_table.h 9 #include "app/sql/connection.h"
17 explicit WebDatabaseTable(sql::Connection* db, sql::MetaTable* meta_table)
34 sql::Connection* db_;
  /external/chromium_org/chrome/browser/history/
in_memory_database.h 10 #include "sql/connection.h"
37 virtual sql::Connection& GetDB() OVERRIDE;
40 // Initializes the database connection, this is the shared code between
44 sql::Connection db_;
  /external/smack/src/org/jivesoftware/smackx/muc/
InvitationListener.java 23 import org.jivesoftware.smack.Connection;
39 * @param conn the Connection that received the invitation.
46 public abstract void invitationReceived(Connection conn, String room, String inviter, String reason,
  /external/smack/src/org/jivesoftware/smackx/ping/
ServerPingTask.java 22 import org.jivesoftware.smack.Connection;
28 // reference to connection so that it can be GCed.
29 private WeakReference<Connection> weakConnection;
34 protected ServerPingTask(Connection connection) {
35 this.weakConnection = new WeakReference<Connection>(connection);
39 Connection connection = weakConnection.get(); local
40 if (connection == null)
    [all...]

Completed in 639 milliseconds

1 2 3 4 5 6 7 8 91011>>