HomeSort by relevance Sort by last modified time
    Searched refs:tunit (Results 1 - 11 of 11) sorted by null

  /external/apache-http/src/org/apache/http/conn/
ClientConnectionRequest.java 58 * @param tunit the unit for the <code>timeout</code>,
69 ManagedClientConnection getConnection(long timeout, TimeUnit tunit)
ClientConnectionManager.java 109 * @param tunit the unit for the <code>idletime</code>
113 void closeIdleConnections(long idletime, TimeUnit tunit)
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
PoolEntryRequest.java 53 * @param tunit the unit for the <code>timeout</code>,
65 TimeUnit tunit) throws InterruptedException, ConnectionPoolTimeoutException;
AbstractConnPool.java 154 * @param tunit the unit for the <code>timeout</code>,
169 TimeUnit tunit)
171 return requestPoolEntry(route, state).getPoolEntry(timeout, tunit);
242 * @param tunit the unit for the <code>idletime</code>
244 public void closeIdleConnections(long idletime, TimeUnit tunit) {
247 if (tunit == null) {
253 idleConnHandler.closeIdleConnections(tunit.toMillis(idletime));
ThreadSafeClientConnManager.java 170 long timeout, TimeUnit tunit) throws InterruptedException,
181 BasicPoolEntry entry = poolRequest.getPoolEntry(timeout, tunit);
297 public void closeIdleConnections(long idleTimeout, TimeUnit tunit) {
299 connectionPool.closeIdleConnections(idleTimeout, tunit);
ConnPoolByRoute.java 241 TimeUnit tunit)
243 return getEntryBlocking(route, state, timeout, tunit, aborter);
256 * @param tunit the unit for the <code>timeout</code>,
269 long timeout, TimeUnit tunit,
276 (System.currentTimeMillis() + tunit.toMillis(timeout));
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 194 long timeout, TimeUnit tunit) {
348 public void closeIdleConnections(long idletime, TimeUnit tunit) {
352 if (tunit == null) {
358 System.currentTimeMillis() - tunit.toMillis(idletime);
  /external/icu/tools/icu4c_srcgen/
genutil.py 228 tunit = index.parse(file_path, self.get_cflags())
229 self.handle_diagnostics(tunit)
231 in tunit.get_includes()]
233 tunit.cursor, module, file_path)
270 def handle_diagnostics(self, tunit):
273 for diag in tunit.diagnostics:
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 3360 llvm::DIFile *tunit = getOrCreateFile(loc); local
    [all...]
CGDebugInfo.h 236 uint64_t offsetInBits, llvm::DIFile *tunit,
  /external/clang/lib/AST/
Decl.cpp 2521 const TranslationUnitDecl *tunit = local
    [all...]

Completed in 480 milliseconds