Searched refs:ValueCell (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DWeakClassHashMap.java49 private Map<Class<?>,ValueCell<V>> internalMap = new WeakHashMap<>();
60 ValueCell<V> valueCell;
64 valueCell = new ValueCell<V>();
83 private static class ValueCell<T> { class in class:WeakClassHashMap
85 ValueCell() { } method in class:WeakClassHashMap.ValueCell
/openjdk7/jdk/src/share/classes/sun/misc/
H A DSoftCache.java114 ValueCell class, which is a simple extension of the SoftReference class.
118 static private class ValueCell extends SoftReference { class in class:SoftCache
123 private ValueCell(Object key, Object value, ReferenceQueue queue) { method in class:SoftCache.ValueCell
128 private static ValueCell create(Object key, Object value,
132 return new ValueCell(key, value, queue);
137 ValueCell vc = (ValueCell)val;
169 ValueCell vc;
170 while ((vc = (ValueCell)queue.poll()) != null) {
172 else ValueCell
[all...]

Completed in 593 milliseconds