Searched refs:monitor (Results 1 - 25 of 184) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/remote/
H A DBufferedMonitoredVm.java26 package sun.jvmstat.monitor.remote;
28 import sun.jvmstat.monitor.*;
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DByteArrayMonitor.java26 package sun.jvmstat.monitor;
H A DIntegerMonitor.java26 package sun.jvmstat.monitor;
H A DLongMonitor.java26 package sun.jvmstat.monitor;
H A DStringMonitor.java26 package sun.jvmstat.monitor;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DMonitorDataException.java26 package sun.jvmstat.perfdata.monitor;
28 import sun.jvmstat.monitor.MonitorException;
H A DMonitorStructureException.java26 package sun.jvmstat.perfdata.monitor;
28 import sun.jvmstat.monitor.MonitorException;
H A DMonitorTypeException.java26 package sun.jvmstat.perfdata.monitor;
28 import sun.jvmstat.monitor.MonitorException;
H A DMonitorVersionException.java26 package sun.jvmstat.perfdata.monitor;
28 import sun.jvmstat.monitor.MonitorException;
H A DCountedTimerTask.java26 package sun.jvmstat.perfdata.monitor;
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMonitorInfo.java29 * Information about a monitor owned by a thread.
38 * Returns the {@link ObjectReference} object for the monitor.
39 * @return the {@link ObjectReference} object for the monitor.
46 public ObjectReference monitor(); method in interface:MonitorInfo
49 * Returns the stack depth at which this monitor was
53 * @return the stack depth at which this monitor was
64 * owns the monitor.
66 * owns the monitor.
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitorInputStream.java47 * This creates a progress monitor to monitor the progress of reading
66 private ProgressMonitor monitor; field in class:ProgressMonitorInputStream
72 * Constructs an object to monitor the progress of an input stream.
90 monitor = new ProgressMonitor(parentComponent, message, null, 0, size);
101 return monitor;
107 * to update the progress monitor after the read.
111 if (c >= 0) monitor.setProgress(++nread);
112 if (monitor.isCanceled()) {
124 * to update the progress monitor afte
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalEventTimer.java26 package sun.jvmstat.perfdata.monitor.protocol.local;
28 import sun.jvmstat.monitor.*;
29 import sun.jvmstat.perfdata.monitor.MonitorStatus;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMonitorInfoImpl.java39 ObjectReference monitor; field in class:MonitorInfoImpl
46 this.monitor = mon;
57 public ObjectReference monitor() { method in class:MonitorInfoImpl
59 return monitor;
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DMonitorSettingException.java26 package javax.management.monitor;
30 * Exception thrown by the monitor when a monitor setting becomes invalid while the monitor is running.
32 * As the monitor attributes may change at runtime, a check is performed before each observation.
33 * If a monitor attribute has become invalid, a monitor setting exception is thrown.
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DMonitorContendedEnterEvent.java33 * to enter a monitor that is already acquired by another thread.
57 * @return an {@link ObjectReference} for the monitor.
59 public ObjectReference monitor(); method in interface:MonitorContendedEnterEvent
H A DMonitorContendedEnteredEvent.java32 * Notification that a thread in the target VM is entering a monitor
54 * Returns the monitor that was entered.
56 * @return an {@link ObjectReference} for the monitor.
58 public ObjectReference monitor(); method in interface:MonitorContendedEnteredEvent
H A DMonitorWaitEvent.java32 * wait on a monitor object.
44 * Returns the thread in which monitor wait event has occurred.
53 * Returns the monitor object that the thread about to wait.
55 * @return an {@link ObjectReference} for the monitor.
57 public ObjectReference monitor(); method in interface:MonitorWaitEvent
62 * @return a <code>jlong</code> containing monitor wait time in milliseconds.
H A DMonitorWaitedEvent.java32 * waiting on an monitor object.
53 * Returns the monitor object this thread waited on.
55 * @return an {@link ObjectReference} for the monitor.
57 public ObjectReference monitor(); method in interface:MonitorWaitedEvent
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMonitorInfoImpl.java38 ObjectReference monitor; field in class:MonitorInfoImpl
45 this.monitor = mon;
75 public ObjectReference monitor() { method in class:MonitorInfoImpl
77 return monitor;
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DExpressionEvaluator.java28 import sun.jvmstat.monitor.MonitorException;
H A DOutputFormatter.java28 import sun.jvmstat.monitor.MonitorException;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/file/
H A DFileMonitoredVm.java26 package sun.jvmstat.perfdata.monitor.protocol.file;
28 import sun.jvmstat.monitor.*;
29 import sun.jvmstat.monitor.event.VmListener;
30 import sun.jvmstat.perfdata.monitor.*;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRawMonitor.hpp65 // Class is used to cache onload or onstart monitor enter
66 // which will transition into real monitor when
71 static GrowableArray<JvmtiRawMonitor*> *_monitors; // Cache raw monitor enter
80 static void enter(JvmtiRawMonitor *monitor) { argument
81 monitors()->append(monitor);
88 static void destroy(JvmtiRawMonitor *monitor) { argument
89 while (monitors()->contains(monitor)) {
90 monitors()->remove(monitor);
94 // Return false if monitor is not found in the list.
95 static bool exit(JvmtiRawMonitor *monitor) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstatd/
H A DRemoteVmImpl.java28 import sun.jvmstat.monitor.*;
29 import sun.jvmstat.monitor.remote.*;

Completed in 80 milliseconds

12345678