Home
last modified time | relevance | path

Searched refs:lifetime (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
DCache.java254 private long lifetime; field in MemoryCache
264 public MemoryCache(boolean soft, int maxSize, int lifetime) { in MemoryCache() argument
266 this.lifetime = lifetime * 1000; in MemoryCache()
320 if (lifetime == 0) { in expungeExpiredEntries()
362 long expirationTime = (lifetime == 0) ? 0 : in put()
363 System.currentTimeMillis() + lifetime; in put()
391 long time = (lifetime == 0) ? 0 : System.currentTimeMillis(); in get()
434 lifetime = timeout > 0 ? timeout * 1000L : 0L; in setTimeout()
/libcore/ojluni/annotations/hiddenapi/sun/security/util/
DMemoryCache.java28 public MemoryCache(boolean soft, int maxSize, int lifetime) { in MemoryCache() argument
91 private long lifetime; field in MemoryCache