Searched defs:lvmid (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jstatd/
H A DRemoteHostImpl.java63 public RemoteVm attachVm(int lvmid, String mode) argument
65 Integer v = new Integer(lvmid);
69 sb.append("local://").append(lvmid).append("@localhost");
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DPerfDataBuffer.java54 * @param lvmid the local Java Virtual Machine Identifier of the
59 public PerfDataBuffer(RemoteVm rvm, int lvmid) throws MonitorException { argument
65 createPerfDataBuffer(buffer, lvmid);
69 + lvmid, e);
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAbstractPerfDataBuffer.java53 * Get the Local Java Virtual Machine Identifier, or <em>lvmid</em>
56 * @return int - the lvmid
147 * Create the perfdata instrumentation buffer for the given lvmid
155 * @param lvmid the Local Java Virtual Machine identifier for this
160 protected void createPerfDataBuffer(ByteBuffer bb, int lvmid) argument
178 bb, new Integer(lvmid)
H A DPerfDataBufferImpl.java58 protected int lvmid; field in class:PerfDataBufferImpl
76 * @param lvmid the Local Java Virtual Machine Identifier for this
79 protected PerfDataBufferImpl(ByteBuffer buffer, int lvmid) { argument
81 this.lvmid = lvmid;
88 * Get the Local Java Virtual Machine Identifier, or <em>lvmid</em>
91 * @return int - the lvmid
94 return lvmid;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DPerfDataFile.java38 * <em>lvmid</em>.
87 * the given <tt>lvmid</tt>. It will search all the user specific
92 * @param lvmid the local Java Virtual Machine Identifier for the target
98 public static File getFile(int lvmid) { argument
99 if (lvmid == 0) {
101 * lvmid == 0 is used to indicate the current Java Virtual Machine.
136 * file named <lvmid> in that directory
138 String name = Integer.toString(lvmid);
144 * is a 1.4.1 hsperfdata_<lvmid> file.
170 * the JVM identified by the given user name and lvmid
181 getFile(String user, int lvmid) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerf.java151 * indicated Java virtual machine. The <code>lvmid</code> parameter is
156 * If the <code>lvmid</code> identifies a Java virtual machine different
166 * If the <code>lvmid</code> is 0 or equal to the actual <code>lvmid</code>
185 * @param lvmid an integer that uniquely identifies the
189 * @throws IllegalArgumentException The lvmid or mode was invalid.
196 public ByteBuffer attach(int lvmid, String mode) argument
200 return attachImpl(null, lvmid, PERF_MODE_RO);
203 return attachImpl(null, lvmid, PERF_MODE_RW);
214 * This method behaves just as the <code>attach(int lvmid, Strin
232 attach(String user, int lvmid, String mode) argument
267 attachImpl(String user, int lvmid, int mode) argument
326 attach(String user, int lvmid, int mode) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java89 * @param lvmid the Local Java Virtual Machine Identifier for this
92 public PerfDataBuffer(ByteBuffer buffer, int lvmid) argument
94 super(buffer, lvmid);
271 log("synchWithTarget: " + lvmid + " ");
278 lognl("failed: " + lvmid);
282 lognl("success: " + lvmid);
294 log("polling for: " + lvmid + "," + name + " ");
304 lognl("failed: " + lvmid + "," + name);
305 dumpAll(map, lvmid);
311 lognl("success: " + lvmid
621 dumpAll(Map map, int lvmid) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java107 * @param lvmid the Local Java Virtual Machine Identifier for this
110 public PerfDataBuffer(ByteBuffer buffer, int lvmid) argument
112 super(buffer, lvmid);
267 log("synchWithTarget: " + lvmid + " ");
276 logln("failed: " + lvmid);
280 logln("success: " + lvmid);
521 private void dumpAll(Map<String, Monitor> map, int lvmid) { argument
525 System.err.println("Dump for " + lvmid);

Completed in 31 milliseconds