Home | History | Annotate | Download | only in dist

Lines Matching defs:noContent

43415 ** non-zero value is passed as the noContent parameter and the 
43420 ** If noContent is true, it means that we do not care about the contents
43429 ** If noContent is true, then the data returned is zeroed instead of
43452 int noContent /* Do not bother reading content from disk if true */
43482 if( (*ppPage)->pPager && !noContent ){
43503 if( MEMDB || pPager->dbSize<pgno || noContent || !isOpen(pPager->fd) ){
43508 if( noContent ){
50934 ** If the noContent flag is set, it means that we do not care about
50945 int noContent /* Do not load page content if true */
50951 rc = sqlite3PagerAcquire(pBt->pPager, pgno, (DbPage**)&pDbPage, noContent);
54405 int noContent;
54416 noContent = !btreeGetHasContent(pBt, *pPgno);
54417 rc = btreeGetPage(pBt, *pPgno, ppPage, noContent);