Lines Matching refs:nextPage
69318 Pgno nextPage;
69320 nextPage = get4byte(&aPayload[pCur->info.nLocal]);
69352 nextPage = pCur->aOverflow[iIdx];
69358 while( nextPage ){
69360 if( nextPage > pBt->nPage ) return SQLITE_CORRUPT_BKPT;
69362 || pCur->aOverflow[iIdx]==nextPage
69364 pCur->aOverflow[iIdx] = nextPage;
69376 nextPage = pCur->aOverflow[iIdx+1];
69378 rc = getOverflowPage(pBt, nextPage, 0, &nextPage);
69406 && sqlite3PagerDirectReadOk(pBt->pPager, nextPage) /* (3,4,5) */
69414 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1));
69415 if( rc && nextPage>pBt->nPage ) rc = SQLITE_CORRUPT_BKPT;
69416 nextPage = get4byte(aWrite);
69423 rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage,
69428 nextPage = get4byte(aPayload);