Searched refs:idletime (Results 1 - 3 of 3) sorted by relevance

/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java103 * @param idletime the idle time of connections to be closed
104 * @param tunit the unit for the <code>idletime</code>
108 void closeIdleConnections(long idletime, TimeUnit tunit) argument
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DAbstractConnPool.java235 * @param idletime the time the connections should have been idle
237 * @param tunit the unit for the <code>idletime</code>
239 public void closeIdleConnections(long idletime, TimeUnit tunit) { argument
241 // idletime can be 0 or negative, no problem there
248 idleConnHandler.closeIdleConnections(tunit.toMillis(idletime));
/external/apache-http/src/org/apache/http/impl/conn/
H A DSingleClientConnManager.java343 public void closeIdleConnections(long idletime, TimeUnit tunit) { argument
346 // idletime can be 0 or negative, no problem there
353 System.currentTimeMillis() - tunit.toMillis(idletime);

Completed in 263 milliseconds