Home
last modified time | relevance | path

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

/external/apache-http/src/org/apache/http/impl/conn/tsccm/
DAbstractConnPool.java169 TimeUnit tunit) in getEntry() argument
171 return requestPoolEntry(route, state).getPoolEntry(timeout, tunit); in getEntry()
244 public void closeIdleConnections(long idletime, TimeUnit tunit) { in closeIdleConnections() argument
247 if (tunit == null) { in closeIdleConnections()
253 idleConnHandler.closeIdleConnections(tunit.toMillis(idletime)); in closeIdleConnections()
DThreadSafeClientConnManager.java170 long timeout, TimeUnit tunit) throws InterruptedException, in requestConnection() argument
181 BasicPoolEntry entry = poolRequest.getPoolEntry(timeout, tunit); in requestConnection()
297 public void closeIdleConnections(long idleTimeout, TimeUnit tunit) {
299 connectionPool.closeIdleConnections(idleTimeout, tunit);
DConnPoolByRoute.java241 TimeUnit tunit) in requestPoolEntry() argument
243 return getEntryBlocking(route, state, timeout, tunit, aborter); in requestPoolEntry()
269 long timeout, TimeUnit tunit,
276 (System.currentTimeMillis() + tunit.toMillis(timeout));
DPoolEntryRequest.java65 TimeUnit tunit) throws InterruptedException, ConnectionPoolTimeoutException; in getPoolEntry() argument
/external/icu/tools/icu4c_srcgen/
Dgenutil.py228 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): argument
273 for diag in tunit.diagnostics:
/external/apache-http/src/org/apache/http/impl/conn/
DSingleClientConnManager.java194 long timeout, TimeUnit tunit) { in requestConnection()
348 public void closeIdleConnections(long idletime, TimeUnit tunit) {
352 if (tunit == null) {
358 System.currentTimeMillis() - tunit.toMillis(idletime);
/external/apache-http/src/org/apache/http/conn/
DClientConnectionRequest.java69 ManagedClientConnection getConnection(long timeout, TimeUnit tunit) in getConnection() argument
DClientConnectionManager.java113 void closeIdleConnections(long idletime, TimeUnit tunit) in closeIdleConnections() argument
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp983 llvm::DIFile *tunit, llvm::DIScope *scope, in createFieldType() argument
985 llvm::DIType *debugType = getOrCreateType(type, tunit); in createFieldType()
1074 const FieldDecl *field, uint64_t OffsetInBits, llvm::DIFile *tunit, in CollectRecordNormalField() argument
1090 OffsetInBits, tunit, RecordTy, RD); in CollectRecordNormalField()
1097 const RecordDecl *record, llvm::DIFile *tunit, in CollectRecordFields() argument
1127 CollectRecordNormalField(field, layout.getFieldOffset(fieldNo), tunit, in CollectRecordFields()
3360 llvm::DIFile *tunit = getOrCreateFile(loc); in EmitDeclareOfBlockLiteralArgVariable() local
3373 tunit, tunit)); in EmitDeclareOfBlockLiteralArgVariable()
3376 tunit, tunit)); in EmitDeclareOfBlockLiteralArgVariable()
3379 tunit, tunit)); in EmitDeclareOfBlockLiteralArgVariable()
[all …]
DCGDebugInfo.h236 uint64_t offsetInBits, llvm::DIFile *tunit,
/external/clang/lib/AST/
DDecl.cpp2521 const TranslationUnitDecl *tunit = in isMain() local
2523 return tunit && in isMain()
2524 !tunit->getASTContext().getLangOpts().Freestanding && in isMain()