Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c72535 Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */ member
73774 if( !pBt->pHasContent ){
73776 pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage);
73777 if( !pBt->pHasContent ){
73781 if( rc==SQLITE_OK && pgno<=sqlite3BitvecSize(pBt->pHasContent) ){
73782 rc = sqlite3BitvecSet(pBt->pHasContent, pgno);
73795 Bitvec *p = pBt->pHasContent;
73804 sqlite3BitvecDestroy(pBt->pHasContent);
73805 pBt->pHasContent = 0;