Searched refs:vectorLength (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DAbstractMonitor.java40 protected int vectorLength; field in class:AbstractMonitor
51 * @param vectorLength the length of the vector, or 0 if not a vector type.
54 boolean supported, int vectorLength) {
58 this.vectorLength = vectorLength;
109 return vectorLength > 0;
116 return vectorLength;
53 AbstractMonitor(String name, Units units, Variability variability, boolean supported, int vectorLength) argument
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DByteArrayCounterSnapshot.java40 int vectorLength, byte[] value) {
41 super(name, u, v, flags, vectorLength);
39 ByteArrayCounterSnapshot(String name, Units u, Variability v, int flags, int vectorLength, byte[] value) argument
H A DLongArrayCounterSnapshot.java40 int vectorLength, long[] value) {
41 super(name, u, v, flags, vectorLength);
39 LongArrayCounterSnapshot(String name, Units u, Variability v, int flags, int vectorLength, long[] value) argument
H A DPerfByteArrayCounter.java37 int flags, int vectorLength,
40 super(name, u, v, flags, vectorLength);
36 PerfByteArrayCounter(String name, Units u, Variability v, int flags, int vectorLength, ByteBuffer bb) argument
H A DPerfLongArrayCounter.java39 int flags, int vectorLength,
42 super(name, u, v, flags, vectorLength);
38 PerfLongArrayCounter(String name, Units u, Variability v, int flags, int vectorLength, LongBuffer lb) argument
H A DPerfDataEntry.java60 private int vectorLength; field in class:PerfDataEntry
98 vectorLength = b.getInt();
148 if (vectorLength > 0) {
149 dataSize = vectorLength * dataType.size();
193 public int vectorLength() { method in class:PerfDataEntry
194 return vectorLength;
203 assert data.remaining() == vectorLength();
H A DPerfInstrumentation.java108 if (entry.units() == Units.STRING && entry.vectorLength() > 0) {
112 entry.vectorLength(),
114 } else if (entry.vectorLength() > 0) {
119 entry.vectorLength(),
122 // ByteArrayCounter must have vectorLength > 0
127 if (entry.vectorLength() == 0) {
138 entry.vectorLength(),
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DAbstractCounter.java40 int vectorLength; field in class:AbstractCounter
49 int vectorLength) {
54 this.vectorLength = vectorLength;
87 return vectorLength > 0;
94 return vectorLength;
47 AbstractCounter(String name, Units units, Variability variability, int flags, int vectorLength) argument
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DPerfByteArrayMonitor.java59 * @param vectorLength the length of the vector.
63 int vectorLength) {
64 super(name, u, v, supported, vectorLength);
61 PerfByteArrayMonitor(String name, Units u, Variability v, boolean supported, ByteBuffer bb, int vectorLength) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfDataEntry.java77 public int vectorLength() { method in class:PerfDataEntry
133 Assert.that(vectorLength() == 0 &&
141 Assert.that(vectorLength() == 0 &&
149 Assert.that(vectorLength() == 0 &&
158 Assert.that(vectorLength() == 0 &&
166 Assert.that(vectorLength() == 0 &&
174 Assert.that(vectorLength() == 0 &&
182 Assert.that(vectorLength() == 0 &&
190 Assert.that(vectorLength() == 0 &&
197 int len = vectorLength();
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java515 int vectorLength = buffer.getInt();
528 if ((vectorLength < 0) || (vectorLength > entryLength)) {
530 "Invalid Monitor vector length: " + vectorLength);
556 if (vectorLength == 0) {
586 bb.limit(vectorLength);
594 bb, vectorLength-1);
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java342 int vectorLength = buffer.getInt();
349 dump_entry_fixed(entryStart, nameOffset, vectorLength, typeCodeByte,
444 if (vectorLength == 0) {
480 bb.limit(vectorLength); // limit buffer length to # of chars
487 bb, vectorLength-1);
542 int vectorLength, byte typeCodeByte,
551 + Integer.toHexString(vectorLength));
541 dump_entry_fixed(int entry_start, int nameOffset, int vectorLength, byte typeCodeByte, byte flags, byte unitsByte, byte varByte, int dataOffset) argument

Completed in 64 milliseconds