HomeSort by relevance Sort by last modified time
    Searched refs:Connection (Results 1 - 25 of 443) 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]
  /external/webkit/Source/WebCore/page/
Connection.cpp 28 #include "Connection.h"
34 Connection::ConnectionType Connection::type() const
Connection.h 34 class Connection : public RefCounted<Connection> {
44 static PassRefPtr<Connection> create() { return adoptRef(new Connection()); }
49 Connection() { }
  /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/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
ThreadLauncherGtk.cpp 34 CoreIPC::Connection::Identifier ThreadLauncher::createWebThread()
  /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...]
  /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/webkit/Source/WebKit2/PluginProcess/
WebProcessConnection.h 31 #include "Connection.h"
40 // A connection from a plug-in process to a web process.
42 class WebProcessConnection : public RefCounted<WebProcessConnection>, CoreIPC::Connection::Client {
44 static PassRefPtr<WebProcessConnection> create(CoreIPC::Connection::Identifier);
47 CoreIPC::Connection* connection() const { return m_connection.get(); } function in class:WebKit::WebProcessConnection
53 WebProcessConnection(CoreIPC::Connection::Identifier);
59 // CoreIPC::Connection::Client
60 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
61 virtual CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.h 31 #include "Connection.h"
36 // A CoreIPC connection to a plug-in process.
44 class PluginProcessConnection : public RefCounted<PluginProcessConnection>, CoreIPC::Connection::Client {
46 static PassRefPtr<PluginProcessConnection> create(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier)
54 CoreIPC::Connection* connection() const { return m_connection.get(); } function in class:WebKit::PluginProcessConnection
62 PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier);
64 // CoreIPC::Connection::Client
65 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
66 virtual CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/ApplicationCache/
WebApplicationCacheManager.h 34 class Connection;
48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebApplicationCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
  /external/webkit/Source/WebKit2/WebProcess/KeyValueStorage/
WebKeyValueStorageManager.h 34 class Connection;
48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebKeyValueStorageManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
  /external/webkit/Source/WebKit2/WebProcess/MediaCache/
WebMediaCacheManager.h 34 class Connection;
46 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
55 void didReceiveWebMediaCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
  /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/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...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
Connection.h 5 * Connection data.
46 class Connection
52 void *connectionData; /**< reference to data related with the connection */
53 bool detached; /**< Connection state */
55 Connection(
59 Connection(
64 virtual ~Connection(
79 * Read bytes from the connection.
91 * Read bytes from the connection.
100 * Write bytes to the connection
    [all...]

Completed in 1378 milliseconds

1 2 3 4 5 6 7 8 91011>>