Searched refs:notifier (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/event/
H A DInvocationEvent.java85 protected Object notifier; field in class:InvocationEvent
156 * method when dispatched. If notifier is non-<code>null</code>,
160 * runnable, notifier, catchThrowables)</tt>
162 * <tt>{@link #InvocationEvent(Object, int, Runnable, Object, boolean) InvocationEvent}(source, InvocationEvent.INVOCATION_DEFAULT, runnable, notifier, catchThrowables)</tt>.
171 * @param notifier The {@code Object} whose <code>notifyAll</code>
186 public InvocationEvent(Object source, Runnable runnable, Object notifier, argument
188 this(source, INVOCATION_DEFAULT, runnable, notifier, catchThrowables);
194 * method when dispatched. If notifier is non-<code>null</code>,
208 * @param notifier The <code>Object</code> whose <code>notifyAll</code>
223 Object notifier, boolea
222 InvocationEvent(Object source, int id, Runnable runnable, Object notifier, boolean catchThrowables) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventSupport.java63 *A notifier (<tt>NamingEventNotifier</tt>) is a worker thread that is responsible
65 *Each notifier maintains its own list of listeners; these listeners have
83 *existing notifier that's already working on the request. If one is
84 *found, the listener is added to the notifier's list. If one is not found,
85 *a new notifier is created for the listener.
89 *corresponding notifier. If the notifier is found, the listener is removed
90 *from the notifier's list. If the listener is the last listener on the list,
91 *the notifier's thread is terminated and removed from this class's hashtable.
92 *Nothing happens if the notifier i
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DPeerEvent.java41 public PeerEvent(Object source, Runnable runnable, Object notifier, argument
43 super(source, runnable, notifier, catchExceptions);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventHandler.java43 EventNotifier notifier; field in class:EventHandler
50 EventHandler(EventNotifier notifier, boolean stopOnVMStart) { argument
51 this.notifier = notifier;
81 notifier.vmInterrupted();
97 notifier.receivedEvent(event);
205 notifier.vmStartEvent(se);
211 notifier.breakpointEvent(be);
217 notifier.methodEntryEvent(me);
223 return notifier
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/hw/
H A DAccelDeviceEventNotifier.java93 AccelDeviceEventNotifier notifier = getInstance(false);
94 if (notifier != null) {
95 notifier.notifyListeners(eventType, screen);
103 * be referenced by the notifier.
/openjdk7/jdk/test/java/util/concurrent/ScheduledThreadPoolExecutor/
H A DDelayOverflow.java103 final Runnable notifier = new Runnable() {
116 scheduleNow(pool, notifier, nowHow);
132 final Runnable notifier = new Runnable() {
137 scheduleNow(pool, notifier, nowHowCopy);
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintService.java195 transient private ServiceNotifier notifier = null; field in class:UnixPrintService
425 if (notifier != null) {
426 notifier.wake();
437 if (notifier == null) {
438 notifier = new ServiceNotifier(this);
440 notifier.addListener(listener);
447 if (listener == null || notifier == null ) {
450 notifier.removeListener(listener);
451 if (notifier.isEmpty()) {
452 notifier
[all...]
H A DIPPPrintService.java86 transient private ServiceNotifier notifier = null; field in class:IPPPrintService
1527 if (notifier != null) {
1528 notifier.wake();
1539 if (notifier == null) {
1540 notifier = new ServiceNotifier(this);
1542 notifier.addListener(listener);
1549 if (listener == null || notifier == null ) {
1552 notifier.removeListener(listener);
1553 if (notifier.isEmpty()) {
1554 notifier
[all...]
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java476 AtomicBoolean notifier = new AtomicBoolean(false); field in class:Util.EventListener
483 notifier.set(false);
488 return notifier;
497 synchronized (notifier) {
498 notifier.set(true);
499 notifier.notifyAll();
/openjdk7/jdk/src/windows/classes/sun/print/
H A DWin32PrintService.java192 transient private ServiceNotifier notifier = null; field in class:Win32PrintService
864 if (notifier != null) {
865 notifier.wake();
876 if (notifier == null) {
877 notifier = new ServiceNotifier(this);
879 notifier.addListener(listener);
886 if (listener == null || notifier == null ) {
889 notifier.removeListener(listener);
890 if (notifier.isEmpty()) {
891 notifier
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp250 MutexLocker notifier(task->lock(), thread);

Completed in 62 milliseconds