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

1 2 3 4

  /libcore/luni/src/main/java/javax/sql/
DataSource.java 64 public Connection getConnection() throws SQLException;
80 public Connection getConnection(String theUsername, String thePassword)
PooledConnection.java 40 * {@link DataSource#getConnection} method. Behind the scenes, the connection
90 * {@code DataSource.getConnection()} and there are no {@code
97 public Connection getConnection() throws SQLException;
RowSetInternal.java 38 public Connection getConnection() throws SQLException;
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionRequest.java 64 ManagedClientConnection getConnection(long timeout, TimeUnit tunit)
68 * Aborts the call to {@link #getConnection(long, TimeUnit)},
  /libcore/luni/src/test/java/libcore/sqlite/
AbstractSqlTest.java 89 firstConnection = DriverManager.getConnection(getConnectionURL());
91 secondConnection = DriverManager.getConnection(getConnectionURL());
122 firstStmt.getConnection().setAutoCommit(true);
166 firstStmt.getConnection().setAutoCommit(false);
169 firstStmt.getConnection().commit();
185 firstStmt.getConnection().setAutoCommit(false);
188 firstStmt.getConnection().rollback();
OldSQLiteTest.java 48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
OldJDBCDriverTest.java 66 DriverManager.getConnection(getConnectionURL());
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_PooledConnection.java 33 public Connection getConnection() throws SQLException {
  /libcore/luni/src/test/java/tests/support/
Support_SQL.java 75 public static Connection getConnection() throws SQLException {
77 return DriverManager.getConnection(Support_SQL.sqlUrl,
85 public static Connection getConnection(String url, String login,
88 return DriverManager.getConnection(url, login, password);
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 139 public static Connection getConnection(String url) throws SQLException {
140 return getConnection(url, new Properties());
161 public static Connection getConnection(String url, Properties info) throws SQLException {
200 public static Connection getConnection(String url, String user, String password)
209 return getConnection(url, theProperties);
Statement.java 359 public Connection getConnection() throws SQLException;
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
BasicPoolEntry.java 73 protected final OperatedClientConnection getConnection() {
ThreadSafeClientConnManager.java 164 public ManagedClientConnection getConnection(
172 log.debug("ThreadSafeClientConnManager.getConnection: "
181 final Socket socket = entry.getConnection().getSocket();
216 final Socket socket = entry.getConnection().getSocket();
ConnPoolByRoute.java 383 closeConnection(entry.getConnection());
395 idleConnHandler.add(entry.getConnection(), validDuration, timeUnit);
436 boolean valid = idleConnHandler.remove(entry.getConnection());
443 closeConnection(entry.getConnection());
530 closeConnection(entry.getConnection());
539 idleConnHandler.remove(entry.getConnection());// not idle, but dead
651 if (!entry.getConnection().isOpen()) {
678 closeConnection(entry.getConnection());
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/
Server.java 126 public HostedConnection getConnection( int id );
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverManagerTest.java 143 * Class under test for Connection getConnection(String)
163 theConnection = DriverManager.getConnection(validConnectionURL);
165 assertNotNull(DriverManager.getConnection(invalidConnectionURL1));
169 theConnection = DriverManager.getConnection(element);
178 * @tests java.sql.DriverManager#getConnection(String, Properties)
182 DriverManager.getConnection("fff", //$NON-NLS-1$
190 DriverManager.getConnection(null, new Properties());
198 * Class under test for Connection getConnection(String, Properties)
221 theConnection = DriverManager.getConnection(validURL1, validProps);
228 theConnection = DriverManager.getConnection(invalidURLs[i]
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
StressTest.java 45 conn = Support_SQL.getConnection();
138 Connection c = Support_SQL.getConnection();
247 Connection c = Support_SQL.getConnection();
276 Connection c = Support_SQL.getConnection();
294 Connection c = Support_SQL.getConnection();
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputBindingTest.java 37 assertSame(bic, inputBinding.getConnection());
  /frameworks/base/core/java/android/view/inputmethod/
InputBinding.java 91 public InputConnection getConnection() {
  /libcore/luni/src/test/java/libcore/java/sql/
OldSQLTest.java 48 conn = DriverManager.getConnection("jdbc:sqlite:/" + dbFile.getPath());
  /libcore/luni/src/test/java/libcore/javax/sql/
OldConnectionEventTest.java 54 public Connection getConnection() throws SQLException {
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityInteractionClient.java 189 IAccessibilityServiceConnection connection = getConnection(connectionId);
242 IAccessibilityServiceConnection connection = getConnection(connectionId);
290 IAccessibilityServiceConnection connection = getConnection(connectionId);
336 IAccessibilityServiceConnection connection = getConnection(connectionId);
381 IAccessibilityServiceConnection connection = getConnection(connectionId);
425 IAccessibilityServiceConnection connection = getConnection(connectionId);
681 public IAccessibilityServiceConnection getConnection(int connectionId) {
  /frameworks/base/core/java/android/net/http/
ConnectionThread.java 111 mConnection = mConnectionManager.getConnection(mContext,
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 188 public ManagedClientConnection getConnection(
190 return SingleClientConnManager.this.getConnection(
207 public ManagedClientConnection getConnection(HttpRoute route, Object state) {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
KernelAdapter.java 128 protected HostedConnection getConnection( Endpoint p )
130 return server.getConnection(p);
175 HostedConnection source = getConnection(p);

Completed in 934 milliseconds

1 2 3 4