Searched refs:busy (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAutoShutdown.java45 * threads that are busy at this moment, i.e. those that are not
80 * are busy at this moment, i.e. those that are not waiting for a
156 * Add a specified thread to the set of busy event dispatch threads.
182 * Remove a specified thread from the set of busy event dispatch threads.
241 * @param busy true if the toolkit thread state changes from idle
242 * to busy.
247 private void setToolkitBusy(final boolean busy) { argument
248 if (busy != toolkitThreadBusy) {
251 if (busy != toolkitThreadBusy) {
252 if (busy) {
[all...]
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DHelperSlowToDie.java59 Runnable busy = new Runnable() {
66 new Thread(busy).start();
78 // terminate busy threads
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java55 private boolean busy = false; field in class:BasicDirectoryModel
433 * Set the busy state for the model. The model is considered
434 * busy when it is running a separate (interruptable)
437 private synchronized void setBusy(final boolean busy, int fid) { argument
439 boolean oldValue = this.busy;
440 this.busy = busy;
442 if (changeSupport != null && busy != oldValue) {
445 firePropertyChange("busy", !busy, bus
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DConnections.java326 int busy = 0;
340 ++busy;
350 return "size=" + len + "; use=" + use + "; busy=" + busy
/openjdk7/jdk/src/macosx/native/sun/awt/
H A Dawt.m78 if (verbose) AWT_DEBUG_LOG(@"setting up busy observers");
167 void setBusy(BOOL busy) {
173 if (busy) {
382 // We don't track if the runloop is busy, so set it free to let AWT finish when it needs
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.h370 static void SetBusy(BOOL busy);
H A Dawt_Toolkit.cpp166 void AwtToolkit::SetBusy(BOOL busy) { argument
207 if (busy) {
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c934 void set_toolkit_busy(Boolean busy) { argument
975 if (busy) {
1702 continuous scrolling. Otherwise, if the application is busy,
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp9862 bool busy() const { return ((_value >> 15) & 1) != 0; } function in class:StatusWord

Completed in 136 milliseconds