Searched refs:listenerInvoked (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/test/com/sun/management/GarbageCollectorMXBean/
H A DGarbageCollectionNotificationTest.java47 private static HashMap<String,Boolean> listenerInvoked = new HashMap<String,Boolean>(); field in class:GarbageCollectionNotificationTest
60 if(!listenerInvoked.get(source)) {
61 listenerInvoked.put(((ObjectName)notif.getSource()).getCanonicalName(),true);
90 listenerInvoked.put(n.getCanonicalName(),false);
111 for (String source : listenerInvoked.keySet()) {
112 if(!listenerInvoked.get(source))
H A DGarbageCollectionNotificationContentTest.java47 private static HashMap<String,GarbageCollectionNotificationInfo> listenerInvoked field in class:GarbageCollectionNotificationContentTest
61 if(listenerInvoked.get(source) == null) {
62 listenerInvoked.put(((ObjectName)notif.getSource()).getCanonicalName(),gcNotif);
91 listenerInvoked.put(n.getCanonicalName(),null);
112 for (GarbageCollectionNotificationInfo notif : listenerInvoked.values() ) {
/openjdk9/jdk/test/java/lang/management/MemoryMXBean/
H A DMemoryManagement.java56 private static volatile int listenerInvoked = 0; field in class:MemoryManagement
69 listenerInvoked++;
151 if (listenerInvoked == 0) {
167 while (listenerInvoked == 0) {
H A DLowMemoryTest2.java41 private static volatile boolean listenerInvoked = false; field in class:LowMemoryTest2
51 listenerInvoked = true;
173 while (!listenerInvoked) {
254 if (listenerInvoked) {
H A DLowMemoryTest.java148 private static volatile boolean listenerInvoked = false; field in class:LowMemoryTest
161 listenerInvoked = true;
323 while (!listenerInvoked || mpool.getUsage().getUsed() < mpool.getUsageThreshold()) {
398 listenerInvoked = false;
H A DCollectionUsageThreshold.java80 private final AtomicInteger listenerInvoked = new AtomicInteger(0); field in class:CollectionUsageThreshold.PoolRecord
86 return listenerInvoked.get();
95 listenerInvoked.incrementAndGet();

Completed in 101 milliseconds