Home
last modified time | relevance | path

Searched refs:BTCF_Pinned (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A DbtreeInt.h562 #define BTCF_Pinned 0x40 /* Cursor is busy and cannot be moved */ macro
H A Dbtree.c715 if( pCur->curFlags & BTCF_Pinned ){ in saveCursorPosition()
4746 assert( (pCur->curFlags & BTCF_Pinned)==0 ); in sqlite3BtreeCursorPin()
4747 pCur->curFlags |= BTCF_Pinned; in sqlite3BtreeCursorPin()
4750 assert( (pCur->curFlags & BTCF_Pinned)!=0 ); in sqlite3BtreeCursorUnpin()
4751 pCur->curFlags &= ~BTCF_Pinned; in sqlite3BtreeCursorUnpin()