MCPcopy Create free account
hub / github.com/apple/foundationdb / moveNext

Method moveNext

fdbserver/KeyValueStoreSQLite.actor.cpp:755–759  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

753 valid = !empty;
754 }
755 void moveNext() {
756 int empty = 1;
757 db.checkError("BtreeNext", sqlite3BtreeNext(cursor, &empty));
758 valid = !empty;
759 }
760 void movePrevious() {
761 int empty = 1;
762 db.checkError("BtreePrevious", sqlite3BtreePrevious(cursor, &empty));

Callers 15

advanceMethod · 0.45
toStringMethod · 0.45
incrementalLazyClearFunction · 0.45
insertMethod · 0.45
keepMethod · 0.45
toStringMethod · 0.45
prefetchFunction · 0.45
Future<Void> move_implFunction · 0.45
readRange_implMethod · 0.45

Calls 2

sqlite3BtreeNextFunction · 0.85
checkErrorMethod · 0.45

Tested by

no test coverage detected