Lines Matching refs:nextPage
76700 Pgno nextPage; local
76702 nextPage = get4byte(&aPayload[pCur->info.nLocal]);
76732 assert( pCur->aOverflow[0]==nextPage
76743 nextPage = pCur->aOverflow[iIdx];
76749 while( nextPage ){
76751 if( nextPage > pBt->nPage ) return SQLITE_CORRUPT_BKPT;
76753 || pCur->aOverflow[iIdx]==nextPage
76755 pCur->aOverflow[iIdx] = nextPage;
76767 nextPage = pCur->aOverflow[iIdx+1];
76769 rc = getOverflowPage(pBt, nextPage, 0, &nextPage);
76797 && sqlite3PagerDirectReadOk(pBt->pPager, nextPage) /* (3,4,5) */
76805 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1));
76806 nextPage = get4byte(aWrite);
76813 rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage,
76818 nextPage = get4byte(aPayload);