Searched defs:CacheEntry (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DCacheEntry.java69 public class CacheEntry { class
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DCacheEntry.java43 public class CacheEntry { class
48 public CacheEntry next;
50 public CacheEntry before;
51 public CacheEntry after;
56 public CacheEntry(Object k, Object v, CacheEntry n) { method in class:CacheEntry
63 public CacheEntry(Object k, int kh, Object v, CacheEntry n) { method in class:CacheEntry
70 public CacheEntry initialize(Object k, Object v, CacheEntry
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/taglibs/cache/
H A DCacheEntry.java47 public class CacheEntry class
55 * Constructs a CacheEntry using the response string to be
58 public CacheEntry(String response, int timeout) { method in class:CacheEntry
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/datastructure/
H A DLRUCacheImpl.java63 private Map<CacheObjectKey, CacheEntry> list;
79 list = new LinkedHashMap<CacheObjectKey, CacheEntry>();
98 CacheEntry entry = list.get(key);
131 CacheEntry entry = new CacheEntry(key, o);
156 CacheEntry entry = list.get(key);
176 CacheEntry entry = list.get(key);
209 public class CacheEntry{ class in class:LRUCacheImpl
213 public CacheEntry(CacheObjectKey key, Object o){ method in class:LRUCacheImpl.CacheEntry
222 for(CacheEntry entr
[all...]

Completed in 22 milliseconds