Searched defs:busy (Results 1 - 5 of 5) 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/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/windows/native/sun/windows/
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 85 milliseconds