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

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaInvocationInfo.java45 private int entryCount; field in class:CorbaInvocationInfo
59 entryCount = 0;
84 return entryCount;
89 entryCount++;
94 entryCount--;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DCacheTable.java53 int entryCount; field in class:CacheTable
68 entryCount = 0;
105 entryCount++;
106 if (entryCount > size * 3 / 4)
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DObjectReference.java397 int entryCount() throws IncompatibleThreadStateException; method in interface:ObjectReference
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DObjectReferenceImpl.java54 private int entryCount = 0; field in class:ObjectReferenceImpl
185 public int entryCount() throws IncompatibleThreadStateException { method in class:ObjectReferenceImpl
193 return entryCount;
308 // compute entryCount
315 entryCount = (int) mark.monitor().recursions() + 1;
320 entryCount = countLockedObjects(owningThread.getJavaThread(), saObject);
/openjdk7/jdk/src/share/classes/sun/font/
H A DCMap.java722 * char entryCount;
839 char entryCount; field in class:CMap.CMapFormat6
847 entryCount = buffer.get();
848 glyphIdArray = new char[entryCount];
849 for (int i=0; i< entryCount; i++) {
865 if (charCode < 0 || charCode >= entryCount) {
911 int entryCount; field in class:CMap.CMapFormat10
917 entryCount = bbuffer.getInt() & INTMASK;
920 glyphIdArray = new char[entryCount];
921 for (int i=0; i< entryCount;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DObjectReferenceImpl.java514 public int entryCount() throws IncompatibleThreadStateException { method in class:ObjectReferenceImpl
515 return jdwpMonitorInfo().entryCount;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java120 private int entryCount = 0; field in class:ClientRequestInfoImpl
170 // Do not reset entryCount because we need to know when to pop this
845 this.entryCount++;
852 this.entryCount--;
859 return this.entryCount;
/openjdk7/hotspot/agent/src/share/native/jvmdi/
H A Dsa.cpp412 jint entryCount; local
414 jvmdiError lnRes = jvmdi->GetLineNumberTable(clazz, m, &entryCount, &table);
418 for (int k = 0; k < entryCount && !done; k++) {

Completed in 55 milliseconds