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

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DEntryContainer.java829 final int idSetLimit = lookThroughLimit > 0 ? Math.min(indexLimit, lookThroughLimit) : indexLimit;
831 final EntryIDSet scopeSet = getIDSetFromScope(txn, aBaseDN, searchScope, idSetLimit);
963 int idSetLimit) throws DirectoryException
979 scopeSet = newIDSetFromCursor(scopeCursor, false, idSetLimit);
986 scopeSet = newIDSetFromCursor(scopeCursor, searchScope.equals(SearchScope.WHOLE_SUBTREE), idSetLimit);
1010 int idSetLimit)
1012 long entryIDs[] = new long[idSetLimit];
1019 while(offset < idSetLimit && cursor.next())
1024 if (offset == idSetLimit && cursor.next())
1028 else if (offset != idSetLimit)
1009 newIDSetFromCursor(SequentialCursor<?, EntryID> cursor, boolean includeCurrent, int idSetLimit) argument
[all...]

Completed in 30 milliseconds