Lines Matching defs:nextPage
73635 Pgno nextPage;
73637 nextPage = get4byte(&aPayload[pCur->info.nLocal]);
73669 nextPage = pCur->aOverflow[iIdx];
73675 while( nextPage ){
73677 if( nextPage > pBt->nPage ) return SQLITE_CORRUPT_BKPT;
73679 || pCur->aOverflow[iIdx]==nextPage
73681 pCur->aOverflow[iIdx] = nextPage;
73693 nextPage = pCur->aOverflow[iIdx+1];
73695 rc = getOverflowPage(pBt, nextPage, 0, &nextPage);
73723 && sqlite3PagerDirectReadOk(pBt->pPager, nextPage) /* (3,4,5) */
73731 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1));
73732 if( rc && nextPage>pBt->nPage ) rc = SQLITE_CORRUPT_BKPT;
73733 nextPage = get4byte(aWrite);
73740 rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage,
73745 nextPage = get4byte(aPayload);