Home
last modified time | relevance | path

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

/src/contrib/sqlite3/
H A Dsqlite3.c70967 Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */ member
72206 if( !pBt->pHasContent ){
72208 pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage);
72209 if( !pBt->pHasContent ){
72213 if( rc==SQLITE_OK && pgno<=sqlite3BitvecSize(pBt->pHasContent) ){
72214 rc = sqlite3BitvecSet(pBt->pHasContent, pgno);
72227 Bitvec *p = pBt->pHasContent;
72236 sqlite3BitvecDestroy(pBt->pHasContent);
72237 pBt->pHasContent = 0;