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

1 2 3 4 5

  /external/webkit/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() { }
Connection.idl 28 interface Connection {
Navigator.h 38 class Connection;
66 Connection* connection() const;
89 mutable RefPtr<Connection> m_connection;
  /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;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallWaitingNotification.java 20 import com.android.internal.telephony.Connection;
55 case 0: return Connection.PRESENTATION_ALLOWED;
56 case 1: return Connection.PRESENTATION_RESTRICTED;
57 case 2: return Connection.PRESENTATION_UNKNOWN;
61 return Connection.PRESENTATION_UNKNOWN;
CdmaCall.java 24 import com.android.internal.telephony.Connection;
35 /*package*/ ArrayList<Connection> connections = new ArrayList<Connection>();
65 public List<Connection>
102 attach(Connection conn, DriverCall dc) {
109 attachFake(Connection conn, State state) {
193 * Called when it's time to clean up disconnected Connection objects
  /frameworks/base/telephony/java/com/android/internal/telephony/
Call.java 67 public abstract List<Connection> getConnections();
76 * @param c a Connection object
77 * @return true if the call contains the connection object passed in
79 public boolean hasConnection(Connection c) {
116 * Returns the Connection associated with this Call that was created
119 public Connection
123 Connection c;
124 Connection earliest = null;
133 c = (Connection) l.get(i);
159 Connection c = (Connection) l.get(i)
    [all...]
DriverCall.java 72 ret.numberPresentation = Connection.PRESENTATION_ALLOWED;
136 case 0: return Connection.PRESENTATION_ALLOWED;
137 case 1: return Connection.PRESENTATION_RESTRICTED;
138 case 2: return Connection.PRESENTATION_UNKNOWN;
139 case 3: return Connection.PRESENTATION_PAYPHONE;
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCallBase.java 21 import com.android.internal.telephony.Connection;
30 protected List<Connection> connections = new ArrayList<Connection>();
34 public List<Connection> getConnections() {
48 for (Iterator<Connection> it = connections.iterator(); it.hasNext(); ) {
49 Connection c = it.next();
  /external/webkit/WebKit/android/wds/
Command.h 44 class Connection;
50 // connection to the client. The connection can be used to read and write to the
53 typedef bool (*DispatchFunction)(const Frame*, const Connection*);
87 static Command* Find(const Connection* conn);
Connection.h 53 class Connection {
55 Connection(int conn): m_socket(conn) {}
73 // Establish a connection to the local host on the given port.
76 // Blocks on the established socket until a new connection arrives.
77 Connection* accept() const;
Connection.cpp 30 #include "Connection.h"
80 Connection* ConnectionServer::accept() const {
86 return new Connection(conn);
Command.cpp 32 #include "Connection.h"
51 static bool callDumpRenderTree(const Frame* frame, const Connection* conn) {
57 static bool callDumpDomTree(const Frame* frame, const Connection* conn) {
91 const Connection* connection)
94 , m_connection(connection) {}
106 const Connection* m_connection;
133 Command* Command::Find(const Connection* conn) {
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_PooledConnection.java 20 import java.sql.Connection;
33 public Connection getConnection() throws SQLException {
  /external/webkit/WebCore/platform/network/android/
NetworkStateNotifierAndroid.cpp 43 void NetworkStateNotifier::networkTypeChange(Connection::ConnectionType type)
  /libcore/luni/src/main/java/java/sql/
Driver.java 40 * Returns whether the driver thinks that it can open a connection to the
45 * @return {@code true} if the driver thinks that is can open a connection
55 * Attempts to make a database connection to a data source specified by a
62 * connection. The properties consist of name/value pairs of
63 * strings. Normally, a connection to a database requires at
66 * @return the connection to the database.
70 public Connection connect(String url, Properties info) throws SQLException;
90 * the client of the driver must supply in order to establish a connection
  /packages/apps/Phone/tests/src/com/android/phone/unit/
CnapTest.java 25 import static com.android.internal.telephony.Connection.PRESENTATION_ALLOWED;
26 import static com.android.internal.telephony.Connection.PRESENTATION_PAYPHONE;
27 import static com.android.internal.telephony.Connection.PRESENTATION_RESTRICTED;
28 import static com.android.internal.telephony.Connection.PRESENTATION_UNKNOWN;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCall.java 21 import com.android.internal.telephony.Connection;
34 /*package*/ ArrayList<Connection> connections = new ArrayList<Connection>();
65 public List<Connection>
98 attach(Connection conn, DriverCall dc) {
105 attachFake(Connection conn, State state) {
191 * Called when it's time to clean up disconnected Connection objects
  /external/qemu/proxy/
proxy_http_connector.c 18 /* A HttpConnector implements a non-HTTP proxied connection
32 typedef struct Connection {
35 } Connection;
50 connection_init( Connection* conn )
63 /* immediate connection ?? */
65 PROXY_LOG("%s: immediate connection", root->name);
86 Connection* conn = (Connection*)root;
110 Connection* conn = (Connection*)root
    [all...]
  /external/webkit/WebCore/platform/network/
NetworkStateNotifier.h 32 #include "Connection.h"
72 Connection::ConnectionType type() const { return m_type; }
79 Connection::ConnectionType m_type;
109 void networkTypeChange(Connection::ConnectionType type);
123 , m_type(Connection::Unknown)
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver1.java 20 import java.sql.Connection;
76 public Connection connect(String url, Properties info) throws SQLException {
88 // It all checks out - so return a connection
89 Connection connection = new TestHelper_Connection1(); local
90 return connection;
  /libcore/luni/src/test/java/tests/support/
DatabaseCreator.java 19 import java.sql.Connection;
256 public static void fillParentTable(Connection conn) throws SQLException {
265 public static void fillFKStrictTable(Connection conn) throws SQLException {
275 public static void fillFKCascadeTable(Connection conn) throws SQLException {
285 public static void fillSimpleTable1(Connection conn) throws SQLException {
292 public static void fillSimpleTable3(Connection conn) throws SQLException {
299 public static void fillSalesPeopleTable(Connection conn)
311 public static void fillCustomersTable(Connection conn) throws SQLException {
323 public static void fillOrdersTable(Connection conn) throws SQLException {
338 public static void fillTestTable1(Connection conn, int numberOfRecords
    [all...]

Completed in 587 milliseconds

1 2 3 4 5