Searched refs:BTREE_SAVEPOSITION (Results 1 – 3 of 3) sorted by relevance
266 #define BTREE_SAVEPOSITION 0x02 /* Leave cursor pointing at NEXT or PREV */ macro
9004 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()
5729 assert( OPFLAG_SAVEPOSITION==BTREE_SAVEPOSITION ); in sqlite3VdbeExec()