Searched defs:attached (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCLHSDB.java64 return attached;
76 if (attached) {
99 private boolean attached; field in class:CLHSDB
167 attached = true;
189 attached = true;
208 attached = true;
220 if (!attached) {
224 attached = false;
H A DHSDB.java63 private boolean attached; field in class:HSDB
642 "running and is attached to a process or core file.");
1172 attached = true;
1224 attached = true;
1274 attached = true;
1298 if (!attached) {
1302 attached = false;
1454 return attached;
1465 if (attached) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java53 private boolean attached; field in class:BsdDebuggerLocal
100 // attached by a serviceability agent thread, only that thread can do
103 // attached to the target. When they attempt to make ptrace calls,
226 if (attached) {
228 throw new DebuggerException("attached to a core dump already");
230 throw new DebuggerException("attached to a process already");
236 if (! attached) {
237 throw new RuntimeException("not attached to a process or a core!");
262 debugger.attached = true;
279 attached
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java53 private boolean attached; field in class:LinuxDebuggerLocal
98 // attached by a serviceability agent thread, only that thread can do
101 // attached to the target. When they attempt to make ptrace calls,
224 if (attached) {
226 throw new DebuggerException("attached to a core dump already");
228 throw new DebuggerException("attached to a process already");
234 if (! attached) {
235 throw new RuntimeException("not attached to a process or a core!");
260 debugger.attached = true;
277 attached
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java59 private boolean attached; field in class:WindbgDebuggerLocal
153 attached = true;
161 attached = true;
172 if ( ! attached)
193 attached = false;
221 if (! attached) {
222 throw new DebuggerException("debugger not yet attached to a Dr. Watson dump!");
429 if (attached) {
430 String msg = (isCore)? "already attached to a Dr. Watson dump!" :
431 "already attached t
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DServiceabilityAgentJVMDIModule.java41 private boolean attached; field in class:ServiceabilityAgentJVMDIModule
107 if (attached) {
108 throw new DebuggerException("Already attached");
152 attached = true;
157 attached = false;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java149 if (!attached) return;
162 if (!attached) {
163 System.err.println("Not attached");
387 private boolean attached; field in class:BugSpot
489 attached = true;
561 if (!attached) {
574 attached = false;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java135 attached = true;
146 attached = true;
152 if (! attached) {
170 attached = false;
545 if (attached) {
547 throw new DebuggerException("already attached to a core file!");
549 throw new DebuggerException("already attached to a process!");
555 if (! attached) {
556 throw new RuntimeException("not attached to a process or core file!");
702 private boolean attached field in class:ProcDebuggerLocal
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp1553 bool attached = false; local
1558 attached = true;
1562 if (!attached) {

Completed in 101 milliseconds