Searched refs:lvmid (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jdk/src/jdk.jstatd/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);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/perf/
H A DPerf.java152 * indicated Java virtual machine. The <code>lvmid</code> parameter is
157 * If the <code>lvmid</code> identifies a Java virtual machine different
167 * 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
334 attach(String user, int lvmid, int mode) argument
[all...]
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DPerfDataFile.java39 * <em>lvmid</em>.
88 * the given {@code lvmid}. It will search all the user specific
93 * @param lvmid the local Java Virtual Machine Identifier for the target
99 public static File getFile(int lvmid) { argument
100 if (lvmid == 0) {
102 * lvmid == 0 is used to indicate the current Java Virtual Machine.
137 * file named <lvmid> in that directory
139 String name = Integer.toString(lvmid);
145 * is a 1.4.1 hsperfdata_<lvmid> file.
171 * the JVM identified by the given user name and lvmid
182 getFile(String user, int lvmid) argument
[all...]
/openjdk10/jdk/src/jdk.jstatd/share/classes/sun/tools/jstatd/
H A DRemoteHostImpl.java63 public RemoteVm attachVm(int lvmid, String mode) argument
65 Integer v = lvmid;
69 sb.append("local://").append(lvmid).append("@localhost");
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/
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;
H A DAbstractPerfDataBuffer.java52 * Get the Local Java Virtual Machine Identifier, or <em>lvmid</em>
55 * @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, lvmid
/openjdk10/jdk/src/jdk.jcmd/share/classes/sun/tools/jps/
H A DJps.java68 int lvmid = jvm;
70 output.append(String.valueOf(lvmid));
78 String vmidString = "//" + lvmid + "?mode=r";
/openjdk10/jdk/src/jdk.jcmd/share/classes/sun/tools/jstat/
H A DJstat.java161 Integer lvmid = vmId.getLocalVmId();
162 if (ev.getTerminated().contains(lvmid)) {
164 } else if (!ev.getActive().contains(lvmid)) {
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java108 * @param lvmid the Local Java Virtual Machine Identifier for this
111 public PerfDataBuffer(ByteBuffer buffer, int lvmid) argument
113 super(buffer, lvmid);
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java90 * @param lvmid the Local Java Virtual Machine Identifier for this
93 public PerfDataBuffer(ByteBuffer buffer, int lvmid) argument
95 super(buffer, lvmid);

Completed in 205 milliseconds