Searched refs:entryLength (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPerfDataEntry.java59 private int entryLength; field in class:PerfDataEntry
71 entryLength = b.getInt();
74 if (entryLength <= 0 || entryLength > b.limit()) {
76 " entryLength = " + entryLength);
79 if ((entryStart + entryLength) > b.limit()) {
82 " entryLength = " + entryLength +
171 return entryLength;
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java317 int entryLength = buffer.getInt();
320 if ((entryLength < 0) || (entryLength > buffer.limit())) {
322 "Invalid entry length: entryLength = " + entryLength
323 + " (0x" + Integer.toHexString(entryLength) + ")");
327 if ((entryStart + entryLength) > buffer.limit()) {
331 + " entryLength = 0x" + Integer.toHexString(entryLength)
335 if (entryLength
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBuffer.java492 int entryLength = buffer.getInt();
495 if ((entryLength < 0) || (entryLength > buffer.limit())) {
497 "Invalid entry length: entryLength = " + entryLength);
501 if ((entryStart + entryLength) > buffer.limit()) {
505 + " entryLength = " + entryLength
509 if (entryLength == 0) {
523 if ((nameLength <= 0) || (nameLength > entryLength)) {
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabOutputStream.java63 write32(entry.entryLength());
H A DKeyTabEntry.java82 public int entryLength() { method in class:KeyTabEntry
H A DKeyTab.java255 int entryLength = 0;
258 entryLength = kis.readEntryLength();
259 entry = kis.readEntry(entryLength, kt_vno);
262 entryLength + "; type: " +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfMemory.java105 off += pde.entryLength();
H A DPerfDataEntry.java69 public int entryLength() { method in class:PerfDataEntry
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java861 int entryLength = readShort();
863 int endOffset = subsectionDirectoryOffset + headerLength + numEntries * entryLength;

Completed in 91 milliseconds