589590591592593594595596597598599
else if (locksHeld != null) { strm.println("\tCurrently holding : " + locksHeld.entryCount() + " locks"); while ((current = next.iterate()) != null) current.print(strm); } else strm.println("Currently holding : 0 locks"); }
838839840841842843844845846847848
* itself (oneOrAll = SINGLE_LOCK). */ previous = null; while ((current = next.iterate()) != null) { Uid checkUid = null; if (all) checkUid = current.getCurrentOwner();
12431244124512461247124812491250125112521253
boolean matching = false; Lock heldLock = null; LockListIterator next = new LockListIterator(locksHeld); while ((heldLock = next.iterate()) != null) { if (heldLock.conflictsWith(otherLock)) { if (LockManager.nestedLocking) {