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

1 2

  /external/okhttp/android/main/java/com/squareup/okhttp/
ConfigAwareConnectionPool.java 24 * A provider of the shared Android {@link ConnectionPool}. This class is aware of network
55 * {@code true} if the ConnectionPool reset has been registered with the
60 private ConnectionPool connectionPool;
76 * Returns the current {@link ConnectionPool} to use.
78 public synchronized ConnectionPool get() {
79 if (connectionPool == null) {
80 // Only register the listener once the first time a ConnectionPool is created.
87 // re-used. By setting connectionPool to null it ensures that the next time
89 connectionPool = null
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ThreadSafeClientConnManager.java 82 protected final AbstractConnPool connectionPool;
103 this.connectionPool = createConnectionPool(params);
160 final PoolEntryRequest poolRequest = connectionPool.requestPoolEntry(
253 connectionPool.freeEntry(entry, reusable, validDuration, timeUnit);
261 connectionPool.shutdown();
276 return ((ConnPoolByRoute)connectionPool).getConnectionsInPool(
290 synchronized (connectionPool) {
291 return connectionPool.numConnections; //@@@
299 connectionPool.closeIdleConnections(idleTimeout, tunit);
300 connectionPool.deleteClosedConnections()
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 110 @Override public void recycle(ConnectionPool pool, Connection connection) {
185 private ConnectionPool connectionPool;
216 this.connectionPool = okHttpClient.connectionPool;
431 * <p>If unset, the {@link ConnectionPool#getDefault() system-wide
434 public OkHttpClient setConnectionPool(ConnectionPool connectionPool) {
435 this.connectionPool = connectionPool;
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
SocketConnector.java 21 import com.squareup.okhttp.ConnectionPool;
58 private final ConnectionPool connectionPool;
60 public SocketConnector(Connection connection, ConnectionPool connectionPool) {
62 this.connectionPool = connectionPool;
178 HttpConnection tunnelConnection = new HttpConnection(connectionPool, connection, socket);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteSession.java 225 * @param connectionPool The connection pool.
227 public SQLiteSession(SQLiteConnectionPool connectionPool) {
228 if (connectionPool == null) {
229 throw new IllegalArgumentException("connectionPool must not be null");
232 mConnectionPool = connectionPool;
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java 19 import com.squareup.okhttp.ConnectionPool;
404 ConnectionPool connectionPool = new ConnectionPool(5, 5000);
405 client.client().setConnectionPool(connectionPool);
415 assertEquals(1, connectionPool.getSpdyConnectionCount());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /prebuilts/devtools/tools/lib/
httpclient-4.1.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /prebuilts/sdk/org.apache.http.legacy/
org.apache.http.legacy.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.2.1/
httpclient-4.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.3.2/
httpclient-4.3.2.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 341 milliseconds

1 2