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

1 2 3 4 5

  /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 143 public static Connection getConnection(String url) throws SQLException {
144 return getConnection(url, new Properties());
165 public static Connection getConnection(String url, Properties info) throws SQLException {
204 public static Connection getConnection(String url, String user, String password)
213 return getConnection(url, theProperties);
  /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();
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamRequest.java 201 this.bytestreamRequest.getFrom(), this.manager.getConnection().getUser());
252 this.manager.getConnection().sendPacket(response);
276 this.manager.getConnection().sendPacket(errorIQ);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputBindingTest.java 37 assertSame(bic, inputBinding.getConnection());
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
SQLiteDatabaseTest.java 40 Statement statement = shadowOf(database).getConnection().createStatement();
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamRequest.java 70 Connection connection = this.manager.getConnection();
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java 471 AccessibilityInteractionClient.getInstance().getConnection(mConnectionId);
494 AccessibilityInteractionClient.getInstance().getConnection(mConnectionId);
525 AccessibilityInteractionClient.getInstance().getConnection(mConnectionId);
677 .getInstance().getConnection(mConnectionId);
  /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 186 IAccessibilityServiceConnection connection = getConnection(connectionId);
239 IAccessibilityServiceConnection connection = getConnection(connectionId);
287 IAccessibilityServiceConnection connection = getConnection(connectionId);
334 IAccessibilityServiceConnection connection = getConnection(connectionId);
378 IAccessibilityServiceConnection connection = getConnection(connectionId);
421 IAccessibilityServiceConnection connection = getConnection(connectionId);
654 public IAccessibilityServiceConnection getConnection(int connectionId) {

Completed in 592 milliseconds

1 2 3 4 5