Searched defs:attach (Results 26 - 50 of 59) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelectionKey.java88 * attached via the {@link #attach attach} method and then later retrieved via
387 public final Object attach(Object ob) { method in class:SelectionKey
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/spi/
H A DTransportService.java69 * to a target VM. This is done by invoking the {@link #attach}
119 * @see #attach(String,long,long)
143 * @see #attach(String,long,long)
176 * If this transport service supports an attach timeout,
180 * does not support an attach timeout, or if <tt>attachTimeout</tt>
181 * is specified as zero then attach without any timeout.
212 * attach timeout or handshake timeout is negative.
216 public abstract Connection attach(String address, long attachTimeout, method in class:TransportService
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsAttachProvider.java25 package sun.tools.attach;
27 import com.sun.tools.attach.VirtualMachine;
28 import com.sun.tools.attach.VirtualMachineDescriptor;
29 import com.sun.tools.attach.AttachNotSupportedException;
142 // then we attempt to attach. If we succeed then we have a 6.0+ VM.
175 System.loadLibrary("attach");
H A DWindowsVirtualMachine.java25 package sun.tools.attach;
27 import com.sun.tools.attach.VirtualMachine;
28 import com.sun.tools.attach.AgentLoadException;
29 import com.sun.tools.attach.AttachNotSupportedException;
30 import com.sun.tools.attach.spi.AttachProvider;
31 import sun.tools.attach.HotSpotVirtualMachine;
185 System.loadLibrary("attach");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebugger.java43 public void attach(int processID) throws DebuggerException; method in interface:Debugger
50 public void attach(String executableName, String coreFileName) method in interface:Debugger
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DChildSession.java93 public boolean attach() { method in class:ChildSession
126 if (!super.attach()) {
135 //System.out.println("IO after attach: "+ inputWriter + " " + outputReader + " "+ errorReader);
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotVirtualMachine.java26 package sun.tools.attach;
28 import com.sun.tools.attach.VirtualMachine;
29 import com.sun.tools.attach.AgentLoadException;
30 import com.sun.tools.attach.AgentInitializationException;
31 import com.sun.tools.attach.spi.AttachProvider;
39 * The HotSpot implementation of com.sun.tools.attach.VirtualMachine.
260 // -- attach timeout support
266 * Return attach timeout based on the value of the sun.tools.attach.attachTimeout
276 System.getProperty("sun.tools.attach
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jmap/
H A DJMap.java33 import com.sun.tools.attach.VirtualMachine;
34 import com.sun.tools.attach.AttachNotSupportedException;
35 import sun.tools.attach.HotSpotVirtualMachine;
39 * and decides if the command should be satisifed using the VM attach mechanism
40 * or an SA tool. At this time the only option that uses the VM attach mechanism
46 // Options handled by the attach mechanism
218 VirtualMachine vm = attach(pid);
240 VirtualMachine vm = attach(pid);
293 // Attach to <pid>, existing if we fail to attach
294 private static VirtualMachine attach(Strin method in class:JMap
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DRemoteMonitoredVm.java77 * Method to attach to the remote MonitoredVm.
79 public void attach() throws MonitorException { method in class:RemoteMonitoredVm
/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerf.java34 * The Perf class provides the ability to attach to an instrumentation
116 * be used to attach to the instrumentation buffer provided by this Java
131 * @see #attach
148 * This method will attach to the instrumentation buffer for the
171 * The attach mode specifies the access permissions requested for the
187 * @param mode a string indicating the attach mode.
196 public ByteBuffer attach(int lvmid, String mode) method in class:Perf
214 * This method behaves just as the <code>attach(int lvmid, String mode)
223 * @param mode a string indicating the attach mode.
232 public ByteBuffer attach(Strin method in class:Perf
326 private native ByteBuffer attach(String user, int lvmid, int mode) method in class:Perf
[all...]
/openjdk7/jdk/src/solaris/classes/sun/tools/attach/
H A DBsdVirtualMachine.java25 package sun.tools.attach;
27 import com.sun.tools.attach.VirtualMachine;
28 import com.sun.tools.attach.AgentLoadException;
29 import com.sun.tools.attach.AttachNotSupportedException;
30 import com.sun.tools.attach.spi.AttachProvider;
69 // attach mechanism in the target VM by sending it a QUIT signal.
78 // give the target VM time to start the attach mechanism
300 System.loadLibrary("attach");
H A DLinuxVirtualMachine.java25 package sun.tools.attach;
27 import com.sun.tools.attach.VirtualMachine;
28 import com.sun.tools.attach.AgentLoadException;
29 import com.sun.tools.attach.AttachNotSupportedException;
30 import com.sun.tools.attach.spi.AttachProvider;
70 // attach mechanism in the target VM by sending it a QUIT signal.
94 // give the target VM time to start the attach mechanism
276 // On Solaris/Linux a simple handshake is used to start the attach mechanism
336 System.loadLibrary("attach");
H A DSolarisVirtualMachine.java25 package sun.tools.attach;
27 import com.sun.tools.attach.VirtualMachine;
28 import com.sun.tools.attach.AgentLoadException;
29 import com.sun.tools.attach.AttachNotSupportedException;
30 import com.sun.tools.attach.spi.AttachProvider;
67 // found it might mean that the attach mechanism isn't started in the
75 // attach file.
78 // give the target VM time to start the attach mechanism
211 // On Solaris/Linux a simple handshake is used to start the attach mechanism
245 System.loadLibrary("attach");
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotAgent.java149 public synchronized void attach(int processID) method in class:HotSpotAgent
161 public synchronized void attach(String javaExecutableName, String coreFileName) method in class:HotSpotAgent
180 public synchronized void attach(String remoteServerID) method in class:HotSpotAgent
602 debugger.attach(pid);
604 debugger.attach(javaExecutableName, coreFileName);
606 throw new DebuggerException("Should not call attach() for startupMode == " + startupMode);
H A DCommandProcessor.java60 public abstract void attach(String pid); method in class:CommandProcessor.DebuggerInterface
61 public abstract void attach(String java, String core); method in class:CommandProcessor.DebuggerInterface
351 new Command("attach", "attach pid | exec core", true) {
356 debugger.attach(t.nextToken());
360 debugger.attach(t.nextToken(), t.nextToken());
1452 // called before debuggee attach
1457 // called after debuggee attach
H A DHSDB.java83 System.out.println(" pid: attach to the process whose id is 'pid'");
100 // If all numbers, it is a PID to attach to
125 // At this point, if pidText != null we are supposed to attach to it.
128 // supposed to attach to.
410 attach(pidText);
412 attach(execPath, coreFilename);
436 attach(pidTextField.getText());
552 attach(execPathField.getText(), corePathField.getText());
1129 private void attach(String pidText) { method in class:HSDB
1147 // Try to attach t
1198 private void attach(final String executablePath, final String corePath) { method in class:HSDB
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyDebugger.java49 public void attach(int processID) throws DebuggerException { method in class:DummyDebugger
52 public void attach(String executableName, String coreFileName) method in class:DummyDebugger
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DSocketTransportService.java184 * Attach to the specified address with optional attach and handshake
187 public Connection attach(String address, long attachTimeout, long handshakeTimeout) method in class:SocketTransportService
366 * The Connection returned by attach and accept is one of these
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/attach/
H A DExternalAttachmentsUnmarshaller.java26 package com.sun.xml.internal.ws.policy.sourcemodel.attach;
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryTransportService.java104 public Connection attach(String address, long attachTimeout, long handshakeTimeout) throws IOException { method in class:SharedMemoryTransportService
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpotAgent.java323 public synchronized void attach(int processID) method in class:BugSpotAgent
335 public synchronized void attach(String executableName, String coreFileName) method in class:BugSpotAgent
354 public synchronized void attach(String remoteServerID) method in class:BugSpotAgent
604 jvmdi.attach();
796 debugger.attach(pid);
798 debugger.attach(executableName, coreFileName);
800 throw new DebuggerException("Should not call attach() for startupMode == " + startupMode);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerClient.java138 public void attach(int processID) throws DebuggerException { method in class:RemoteDebuggerClient
143 public void attach(String executableName, String coreFileName) throws DebuggerException { method in class:RemoteDebuggerClient
/openjdk7/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp823 // attach to a named shared memory region.
991 // attach to the PerfData memory region for another JVM
1006 void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) { function in class:PerfMemory
/openjdk7/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp823 // attach to a named shared memory region.
991 // attach to the PerfData memory region for another JVM
1006 void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) { function in class:PerfMemory
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp838 // attach to a named shared memory region.
1006 // attach to the PerfData memory region for another JVM
1021 void PerfMemory::attach(const char* user, int vmid, PerfMemoryMode mode, char** addrp, size_t* sizep, TRAPS) { function in class:PerfMemory

Completed in 78 milliseconds

123