Searched refs:joinCursor (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DEntityJoin.java223 private JoinCursor joinCursor; field in class:EntityJoin.JoinForwardCursor
236 /* Leave joinCursor null. */
242 joinCursor = primary.getDatabase().join(cursors, null);
258 if (joinCursor == null) {
263 OperationStatus status = joinCursor.getNext(key, lockMode);
272 joinCursor.getNext(key, data, lockMode);
298 if (joinCursor != null) {
300 joinCursor.close();
301 joinCursor = null;
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DDataCursor.java42 private JoinCursor joinCursor; field in class:DataCursor
111 joinCursor = view.db.join(cursors, joinConfig);
170 if (joinCursor == null) {
210 if (joinCursor != null) {
211 JoinCursor toClose = joinCursor;
212 joinCursor = null;
427 if (joinCursor != null) {
428 return joinCursor.getNext(keyThang, valueThang, lockMode);
442 if (joinCursor != null) {
443 return joinCursor
[all...]
H A DStoredIterator.java85 DataCursor joinCursor) {
89 if (joinCursor == null)
92 this.cursor = joinCursor;
84 StoredIterator(StoredCollection coll, boolean writeAllowed, DataCursor joinCursor) argument
H A DDataView.java424 DataCursor joinCursor = null;
431 joinCursor = new DataCursor(this, indexCursors, joinConfig, true);
432 return joinCursor;
434 if (joinCursor == null) {

Completed in 180 milliseconds