Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c72636 Bitvec *pHasContent; /* Set of pages moved to free-list this transaction */ member
73878 if( !pBt->pHasContent ){
73880 pBt->pHasContent = sqlite3BitvecCreate(pBt->nPage);
73881 if( !pBt->pHasContent ){
73885 if( rc==SQLITE_OK && pgno<=sqlite3BitvecSize(pBt->pHasContent) ){
73886 rc = sqlite3BitvecSet(pBt->pHasContent, pgno);
73899 Bitvec *p = pBt->pHasContent;
73908 sqlite3BitvecDestroy(pBt->pHasContent);
73909 pBt->pHasContent = 0;