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

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DVerifyJob.java108 private ID2ChildrenCount id2childrenCount; field in class:VerifyJob
245 id2childrenCount = entryContainer.getID2ChildrenCount();
526 final long currentValue = id2childrenCount.getCount(txn, parent.entryID);
536 try (final SequentialCursor<EntryID, Void> cursor = id2childrenCount.openCursor(txn))
1024 totalCount = id2childrenCount.getRecordCount(txn);
H A DEntryContainer.java160 private final ID2ChildrenCount id2childrenCount; field in class:EntryContainer
417 this.id2childrenCount = new ID2ChildrenCount(getIndexName(ID2CHILDREN_COUNT_TREE_NAME));
456 id2childrenCount.open(txn, shouldCreate);
568 return id2childrenCount;
674 return entryID != null ? id2childrenCount.getCount(txn, entryID) : -1;
1527 id2childrenCount.updateCount(txn, parentID, 1);
1530 id2childrenCount.updateTotalCount(txn, 1);
1634 // We'll need the parent ID when we update the id2childrenCount. Fetch it now so that accesses to dn2id
1662 * id2childrenCount, and finally the attribute indexes.
1694 // Now update id2entry, dn2uri, and id2childrenCount i
[all...]

Completed in 40 milliseconds