Searched defs:rvm (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jstatd/
H A DRemoteHostImpl.java79 RemoteVmImpl rvm = new RemoteVmImpl((BufferedMonitoredVm)mvm);
80 stub = (RemoteVm) UnicastRemoteObject.exportObject(rvm, 0);
89 public void detachVm(RemoteVm rvm) throws RemoteException { argument
90 rvm.detach();
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/remote/
H A DRemoteHost.java63 * @param rvm The remote object for the target Java Virtual
71 void detachVm(RemoteVm rvm) throws RemoteException, MonitorException; argument
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DPerfDataBuffer.java47 private RemoteVm rvm; field in class:PerfDataBuffer
53 * @param rvm the proxy to the remote MonitredVm object
59 public PerfDataBuffer(RemoteVm rvm, int lvmid) throws MonitorException { argument
61 this.rvm = rvm;
63 ByteBuffer buffer = ByteBuffer.allocate(rvm.getCapacity());
86 assert rvm != null;
89 buffer.put(rvm.getBytes());
H A DRemoteMonitoredVm.java55 private RemoteVm rvm; field in class:RemoteMonitoredVm
61 * @param rvm the proxy to the remote MonitoredVm instance.
66 public RemoteMonitoredVm(RemoteVm rvm, VmIdentifier vmid, argument
70 this.rvm = rvm;
71 pdb = new PerfDataBuffer(rvm, vmid.getLocalVmId());
135 return rvm;

Completed in 1270 milliseconds