OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newSoftMemoryCache
(Results
1 - 6
of
6
) sorted by null
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
CertStoreHelper.java
64
= Cache.
newSoftMemoryCache
(NUM_TYPES);
X509CertificatePair.java
83
= Cache.
newSoftMemoryCache
(750);
URICertStore.java
188
certStoreCache = Cache.
newSoftMemoryCache
(CACHE_SIZE);
/libcore/ojluni/src/main/java/sun/security/util/
Cache.java
122
public static <K,V> Cache<K,V>
newSoftMemoryCache
(int size) {
131
public static <K,V> Cache<K,V>
newSoftMemoryCache
(int size, int timeout) {
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ldap/
LDAPCertStore.java
209
valueCache = Cache.
newSoftMemoryCache
(DEFAULT_CACHE_SIZE);
211
valueCache = Cache.
newSoftMemoryCache
(DEFAULT_CACHE_SIZE, LIFETIME);
220
certStoreCache = Cache.
newSoftMemoryCache
(185);
[
all
...]
/libcore/ojluni/src/main/java/sun/security/provider/
X509Factory.java
67
private static final Cache certCache = Cache.
newSoftMemoryCache
(750);
68
private static final Cache crlCache = Cache.
newSoftMemoryCache
(750);
Completed in 313 milliseconds