Searched defs:enumCount (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNCtx.java88 int enumCount; field in class:CNCtx
1119 enumCount++;
1121 System.out.println("incEnumCount, new count:" + enumCount);
1127 enumCount--;
1129 System.out.println("decEnumCount, new count:" + enumCount +
1132 if ((enumCount == 0) && isCloseCalled) {
1139 if (enumCount > 0) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapCtx.java2585 if (enumCount > 0) {
2810 private int enumCount = 0; field in class:LdapCtx
2814 ++enumCount;
2815 if (debug) System.err.println("LdapCtx: " + this + " enum inc: " + enumCount);
2819 --enumCount;
2820 if (debug) System.err.println("LdapCtx: " + this + " enum dec: " + enumCount);
2822 if (enumCount == 0 && closeRequested) {

Completed in 45 milliseconds