Searched defs:referenceQueue (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tracing/dtrace/
H A DActivation.java81 private static ReferenceQueue<Activation> referenceQueue = field in class:SystemResource
82 referenceQueue = new ReferenceQueue<Activation>();
86 super(activation, referenceQueue);
100 while ((resource = (SystemResource)referenceQueue.poll()) != null) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageCache.java58 private ReferenceQueue<Image> referenceQueue = new ReferenceQueue<Image>(); field in class:ImageCache
153 while ((ref = (PixelCountSoftReference)referenceQueue.poll()) != null){
171 map.put(hash, new PixelCountSoftReference(image, referenceQueue, newPixelCount,hash, config, w, h, args));
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DImageCache.java54 private final ReferenceQueue<Image> referenceQueue = new ReferenceQueue<>(); field in class:ImageCache
139 while ((ref = (PixelCountSoftReference)referenceQueue.poll()) != null) {
158 map.put(hash, new PixelCountSoftReference(image, referenceQueue, newPixelCount, hash, config, w, h, scale, state));
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSession.java138 static ReferenceQueue<Session> referenceQueue() { method in class:SessionRef
H A DP11Key.java1080 static ReferenceQueue<P11Key> referenceQueue() { method in class:SessionKeyRef
/openjdk7/jdk/src/share/classes/java/util/
H A DResourceBundle.java299 private static final ReferenceQueue referenceQueue = new ReferenceQueue(); field in class:ResourceBundle
520 loaderRef = new LoaderReference(loader, referenceQueue, this);
606 referenceQueue, clone);
1365 while ((ref = referenceQueue.poll()) != null) {
1629 BundleReference bundleRef = new BundleReference(bundle, referenceQueue, key);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVirtualMachineImpl.java124 private final ReferenceQueue referenceQueue = new ReferenceQueue(); field in class:VirtualMachineImpl
1055 while ((ref = referenceQueue.poll()) != null) {
1138 ref = new SoftObjectReference(key, object, referenceQueue);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java84 private final ReferenceQueue<ObjectReferenceImpl> referenceQueue = new ReferenceQueue<ObjectReferenceImpl>(); field in class:VirtualMachineImpl
1234 while ((ref = referenceQueue.poll()) != null) {
1293 ref = new SoftObjectReference(key, object, referenceQueue);

Completed in 83 milliseconds