Home
last modified time | relevance | path

Searched refs:tunit (Results 1 – 10 of 10) sorted by relevance

/external/apache-http/src/org/apache/http/impl/conn/tsccm/
DAbstractConnPool.java164 TimeUnit tunit) in getEntry() argument
166 return requestPoolEntry(route, state).getPoolEntry(timeout, tunit); in getEntry()
239 public void closeIdleConnections(long idletime, TimeUnit tunit) { in closeIdleConnections() argument
242 if (tunit == null) { in closeIdleConnections()
248 idleConnHandler.closeIdleConnections(tunit.toMillis(idletime)); in closeIdleConnections()
DThreadSafeClientConnManager.java165 long timeout, TimeUnit tunit) throws InterruptedException, in requestConnection() argument
176 BasicPoolEntry entry = poolRequest.getPoolEntry(timeout, tunit); in requestConnection()
292 public void closeIdleConnections(long idleTimeout, TimeUnit tunit) {
294 connectionPool.closeIdleConnections(idleTimeout, tunit);
DConnPoolByRoute.java236 TimeUnit tunit) in requestPoolEntry() argument
238 return getEntryBlocking(route, state, timeout, tunit, aborter); in requestPoolEntry()
264 long timeout, TimeUnit tunit,
271 (System.currentTimeMillis() + tunit.toMillis(timeout));
DPoolEntryRequest.java60 TimeUnit tunit) throws InterruptedException, ConnectionPoolTimeoutException; in getPoolEntry() argument
/external/apache-http/src/org/apache/http/impl/conn/
DSingleClientConnManager.java189 long timeout, TimeUnit tunit) { in requestConnection()
343 public void closeIdleConnections(long idletime, TimeUnit tunit) {
347 if (tunit == null) {
353 System.currentTimeMillis() - tunit.toMillis(idletime);
/external/apache-http/src/org/apache/http/conn/
DClientConnectionRequest.java64 ManagedClientConnection getConnection(long timeout, TimeUnit tunit) in getConnection() argument
DClientConnectionManager.java108 void closeIdleConnections(long idletime, TimeUnit tunit) in closeIdleConnections() argument
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp781 llvm::DIFile tunit, in createFieldType() argument
783 llvm::DIType debugType = getOrCreateType(type, tunit); in createFieldType()
897 llvm::DIFile tunit, in CollectRecordNormalField() argument
916 OffsetInBits, tunit, RecordTy); in CollectRecordNormalField()
924 CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit, in CollectRecordFields() argument
956 tunit, elements, RecordTy); in CollectRecordFields()
2692 llvm::DIFile tunit = getOrCreateFile(loc); in EmitDeclareOfBlockLiteralArgVariable() local
2705 tunit, tunit)); in EmitDeclareOfBlockLiteralArgVariable()
2708 tunit, tunit)); in EmitDeclareOfBlockLiteralArgVariable()
2711 tunit, tunit)); in EmitDeclareOfBlockLiteralArgVariable()
[all …]
DCGDebugInfo.h172 llvm::DIFile tunit,
/external/clang/lib/AST/
DDecl.cpp2022 const TranslationUnitDecl *tunit = in isMain() local
2024 return tunit && in isMain()
2025 !tunit->getASTContext().getLangOpts().Freestanding && in isMain()