Home
last modified time | relevance | path

Searched refs:BTREE_SAVEPOSITION (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dbtree.h266 #define BTREE_SAVEPOSITION 0x02 /* Leave cursor pointing at NEXT or PREV */ macro
H A Dbtree.c9004 assert( (flags & (BTREE_SAVEPOSITION|BTREE_APPEND|BTREE_PREFORMAT))==flags ); in sqlite3BtreeInsert()
9066 if( flags & BTREE_SAVEPOSITION ){ in sqlite3BtreeInsert()
9103 assert( (flags & BTREE_SAVEPOSITION)==0 || loc==0 ); in sqlite3BtreeInsert()
9110 if( loc==0 && (flags & BTREE_SAVEPOSITION)==0 ){ in sqlite3BtreeInsert()
9266 if( (flags & BTREE_SAVEPOSITION) && rc==SQLITE_OK ){ in sqlite3BtreeInsert()
9433 assert( (flags & ~(BTREE_SAVEPOSITION | BTREE_AUXDELETE))==0 ); in sqlite3BtreeDelete()
9472 bPreserve = (flags & BTREE_SAVEPOSITION)!=0; in sqlite3BtreeDelete()
H A Dvdbe.c5729 assert( OPFLAG_SAVEPOSITION==BTREE_SAVEPOSITION ); in sqlite3VdbeExec()