Searched defs:active (Results 1 - 25 of 56) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DVoiceStatus.java64 * four voices are active in this case (assuming no earlier notes are still playing).
65 * Usually, a voice whose status is reported as active is producing audible sound, but this
70 * message is received. In such a situation, the voice is still considered active
73 * Besides its active or inactive status, the <code>VoiceStatus</code> class
77 * of these fields has an unspecified value, so you should check the active
93 * <A HREF="#description_of_active">active and inactive voices</A>.
95 public boolean active = false; field in class:VoiceStatus
100 * zero-based channel number if the voice is active, or
104 * @see #active
113 * The value ranges from 0 to 16383 if the voice is active, an
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAudioPusher.java39 private volatile boolean active = false; field in class:SoftAudioPusher
53 if (active)
55 active = true;
63 if (!active)
65 active = false;
79 while (active) {
87 active = false;
H A DAbstractDataLine.java64 private boolean active = false; field in class:AbstractDataLine
254 return active;
309 * This method sets the active state and generates
312 final void setActive(boolean active) { argument
314 if (Printer.trace) Printer.trace("> AbstractDataLine: setActive(" + active + ")");
321 //if (Printer.debug) Printer.debug(" AbstractDataLine: setActive: this.active: " + this.active);
322 //if (Printer.debug) Printer.debug(" active: " + active);
324 if (this.active !
[all...]
H A DSoftJitterCorrector.java44 boolean active = true; field in class:SoftJitterCorrector.JitterStream
139 if (!active)
169 if (!active)
226 active = false;
/openjdk7/jdk/test/java/awt/print/PaintSetEnabledDeadlock/
H A DPaintSetEnabledDeadlock.java97 volatile boolean active = true; field in class:TestPanel
133 while (active) {
140 if (active) {
147 active = false;
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/event/
H A DVmStatusChangeEvent.java41 * The set of currently active Java Virtual Machines for the MonitoredHost.
43 * active Java Virtual Machine on the MonitoredHost. This Set will only
46 protected Set active; field in class:VmStatusChangeEvent
68 * @param active the set of currently active Java Virtual Machines
74 public VmStatusChangeEvent(MonitoredHost host, Set active, argument
77 this.active = active;
83 * Return the set of currently active Java Virtual Machines.
85 * active Jav
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDropTargetEventProcessor.java38 private static boolean active = false; field in class:XDropTargetEventProcessor
112 active = true;
119 return active ? theInstance.doProcessEvent(ev) : false;
H A DXEmbedClientHelper.java48 private boolean active; field in class:XEmbedClientHelper
61 active = false;
103 active = true;
176 if (active) {
186 active = false;
195 if (active && embedded.focusAllowedFor()) {
205 // embedded is an active window before sending WINDOW_LOST_FOCUS
222 return active;
226 if (active) {
232 if (active) {
[all...]
H A DXInputMethod.java77 boolean value, boolean active) {
84 active);
146 boolean value, boolean active);
76 setXICFocus(ComponentPeer peer, boolean value, boolean active) argument
145 setXICFocusNative(long window, boolean value, boolean active) argument
H A DXWINProtocol.java200 if (log.isLoggable(PlatformLogger.FINE)) log.fine("### " + this + " is active: " + (WinWindow != 0));
203 boolean active() { method in class:XWINProtocol
208 boolean res = active() && checkProtocol(XA_WIN_PROTOCOLS, XA_WIN_STATE);
214 boolean res = active() && checkProtocol(XA_WIN_PROTOCOLS, XA_WIN_LAYER);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DEnumRowStatus.java65 * This value corresponds to the <i>active</i> RowStatus, as defined in
68 * <i>active</i> indicates that the conceptual row is available for
72 public final static int active = 1; field in class:EnumRowStatus
108 * to active, making it available for use by the managed
208 * the values defined in RFC 2579 ("active", "notReady", etc...)
249 * <li><i>active(1)</i></li>
296 intTable.put(new Integer(1), "active");
303 stringTable.put("active", new Integer(1));
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DJStatLogger.java44 private volatile boolean active = true; field in class:JStatLogger
121 active = false;
142 while (active) {
/openjdk7/jdk/src/share/classes/sun/tracing/
H A DProviderSkeleton.java70 protected boolean active; // set to false after dispose() is called field in class:ProviderSkeleton
92 this.active = false; // in case of some error during initialization
118 this.active = true;
183 return active ? probes.get(m) : null;
192 active = false;
258 if (active) {
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivationGroupImpl.java68 private final Hashtable<ActivationID,ActiveEntry> active = field in class:ActivationGroupImpl
194 * activate an already active object should return the previously
223 ActiveEntry entry = active.get(id);
296 active.put(id, entry);
327 * active). If the object does not call
343 * not currently active so that the remote object will be
349 * succeed if the object in currently known to be active and is
368 ActiveEntry entry = active.get(id);
371 throw new UnknownObjectException("object not active");
385 active
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerManagerImpl.java162 serverId + " failed because server is already active. " +
194 public void active(int serverId, Server server) throws ServerNotRegistered method in class:ServerManagerImpl
204 System.out.println( "ServerManagerImpl: active for server Id " +
210 System.out.println( "ServerManagerImpl: active for server Id " +
211 serverId + " called. This server is now active." ) ;
240 serverId + " called. This server is now active." ) ;
274 // collect the active entries
338 "no active server found." ) ;
341 " active server found " + entry + "." ) ;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DptrQueue.cpp44 PtrQueue::PtrQueue(PtrQueueSet* qset, bool perm, bool active) : argument
45 _qset(qset), _buf(NULL), _index(0), _active(active),
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DNode.java40 private boolean active; field in class:Node
61 return active;
65 active = b;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaRootPaneUI.java43 * The JRootPane manages the default button. There can be only one active rootpane,
87 // Listen for layered pane/JMenuBar updates if the screen menu bar is active.
109 * If the screen menu bar is active we need to listen to the layered pane of the root pane
177 // otherwise do nothing - someone else may be active
299 private static void updateComponentTreeUIActivation(final Component c, Object active) { argument
301 active = (((JInternalFrame)c).isSelected() ? Boolean.TRUE : Boolean.FALSE);
305 ((javax.swing.JComponent)c).putClientProperty(AquaFocusHandler.FRAME_ACTIVE_PROPERTY, active);
319 updateComponentTreeUIActivation(element, active);
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftAudioSynthesizer/
H A DDummySourceDataLine.java55 private boolean active = false; field in class:DummySourceDataLine
190 return active;
194 return active;
198 active = true;
202 active = false;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DDummySourceDataLine.java55 private boolean active = false; field in class:DummySourceDataLine
190 return active;
194 return active;
198 active = true;
202 active = false;
/openjdk7/jdk/test/sun/jvmstat/monitor/MonitoredVm/
H A DMonitorVmStartTerminate.java222 private synchronized int active() { method in class:SleeperStarter
223 int active = processes.length;
227 active--;
232 return active;
261 while (active() > 0) ;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DMonitoredHostProvider.java156 * @param active a set of Integer objects containing the vmid of
157 * the active Vms
163 private void fireVmStatusChangedEvents(Set active, Set started, argument
175 ev = new VmStatusChangeEvent(this, active, started, terminated);
188 // save the last set of active JVMs
191 // get the current set of active JVMs
212 // JVM has terminated, remove it from the active list
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DMonitoredHostProvider.java240 * @param active Set of Integer objects containing the local
241 * Vm Identifiers of the active JVMs
249 private void fireVmStatusChangedEvents(Set active, Set started, argument
261 ev = new VmStatusChangeEvent(this, active, started, terminated);
294 // save the last set of active JVMs
298 // get the current set of active JVMs
331 // JVM has terminated, remove it from the active list
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalUtils.java96 * It is used for things like active toggle buttons.
105 * It is used for things like active toggle buttons.
122 static void drawButtonBorder(Graphics g, int x, int y, int w, int h, boolean active) { argument
123 if (active) {
140 static void drawDefaultButtonBorder(Graphics g, int x, int y, int w, int h, boolean active) { argument
141 drawButtonBorder(g, x+1, y+1, w-1, h-1, active);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthScrollBarUI.java437 protected void setThumbRollover(boolean active) { argument
438 if (isThumbRollover() != active) {
440 super.setThumbRollover(active);

Completed in 79 milliseconds

123