Lines Matching defs:noContent
43387 ** non-zero value is passed as the noContent parameter and the
43392 ** If noContent is true, it means that we do not care about the contents
43401 ** If noContent is true, then the data returned is zeroed instead of
43424 int noContent /* Do not bother reading content from disk if true */
43454 if( (*ppPage)->pPager && !noContent ){
43475 if( MEMDB || pPager->dbSize<pgno || noContent || !isOpen(pPager->fd) ){
43480 if( noContent ){
50906 ** If the noContent flag is set, it means that we do not care about
50917 int noContent /* Do not load page content if true */
50923 rc = sqlite3PagerAcquire(pBt->pPager, pgno, (DbPage**)&pDbPage, noContent);
54377 int noContent;
54388 noContent = !btreeGetHasContent(pBt, *pPgno);
54389 rc = btreeGetPage(pBt, *pPgno, ppPage, noContent);