Lines Matching defs:nextPage
53282 Pgno nextPage;
53284 nextPage = get4byte(&aPayload[pCur->info.nLocal]);
53310 nextPage = pCur->aOverflow[iIdx];
53315 for( ; rc==SQLITE_OK && amt>0 && nextPage; iIdx++){
53320 assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage);
53321 pCur->aOverflow[iIdx] = nextPage;
53334 nextPage = pCur->aOverflow[iIdx+1];
53337 rc = getOverflowPage(pBt, nextPage, 0, &nextPage);
53373 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1));
53374 nextPage = get4byte(aWrite);
53381 rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage);
53384 nextPage = get4byte(aPayload);