Home
last modified time | relevance | path

Searched refs:mConnectionPool (Results 1 – 3 of 3) sorted by relevance

/packages/services/Mms/src/com/android/mms/service/
DMmsNetworkManager.java72 private ConnectionPool mConnectionPool; field in MmsNetworkManager
86 mConnectionPool = null; in MmsNetworkManager()
213 mConnectionPool = null; in resetLocked()
239 if (mConnectionPool == null) { in getOrCreateConnectionPoolLocked()
240 mConnectionPool = new ConnectionPool(httpMaxConnections, httpKeepAliveDurationMs); in getOrCreateConnectionPoolLocked()
242 return mConnectionPool; in getOrCreateConnectionPoolLocked()
DMmsHttpClient.java73 private final ConnectionPool mConnectionPool; field in MmsHttpClient
88 mConnectionPool = connectionPool; in MmsHttpClient()
236 .setConnectionPool(mConnectionPool) in openConnection()
/packages/apps/Email/provider_src/com/android/email/mail/store/
DImapStore.java93 private final ConcurrentLinkedQueue<ImapConnection> mConnectionPool = field in ImapStore
159 return mConnectionPool; in getConnectionPoolForTest()
556 while ((connection = mConnectionPool.poll()) != null) { in getConnection()
582 mConnectionPool.add(connection); in poolConnection()
691 while ((connection = mConnectionPool.poll()) != null) { in closeConnections()