Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dpager.c5490 u8 noContent; /* True if PAGER_GET_NOCONTENT is set */ in getPageNormal() local
5514 noContent = (flags & PAGER_GET_NOCONTENT)!=0; in getPageNormal()
5515 if( pPg->pPager && !noContent ){ in getPageNormal()
5537 if( !isOpen(pPager->fd) || pPager->dbSize<pgno || noContent ){ in getPageNormal()
5542 if( noContent ){ in getPageNormal()
H A Dbtree.c6454 int noContent; in allocateBtreePage() local
6465 noContent = !btreeGetHasContent(pBt, *pPgno)? PAGER_GET_NOCONTENT : 0; in allocateBtreePage()
6466 rc = btreeGetUnusedPage(pBt, *pPgno, ppPage, noContent); in allocateBtreePage()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_file.c1541 int noContent, /* True to not load content from disk */ in fsPageGet() argument
1605 if( noContent==0 ){ in fsPageGet()