Home | History | Annotate | Download | only in dist

Lines Matching refs:noContent

39709 ** non-zero value is passed as the noContent parameter and the 
39714 ** If noContent is true, it means that we do not care about the contents
39723 ** If noContent is true, then the data returned is zeroed instead of
39746 int noContent /* Do not bother reading content from disk if true */
39776 if( (*ppPage)->pPager && !noContent ){
39798 if( MEMDB || pPager->dbSize<pgno || noContent || !isOpen(pPager->fd) ){
39803 if( noContent ){
46892 ** If the noContent flag is set, it means that we do not care about
46903 int noContent /* Do not load page content if true */
46909 rc = sqlite3PagerAcquire(pBt->pPager, pgno, (DbPage**)&pDbPage, noContent);
50288 int noContent;
50298 noContent = !btreeGetHasContent(pBt, *pPgno);
50299 rc = btreeGetPage(pBt, *pPgno, ppPage, noContent);