Home | History | Annotate | Download | only in orig

Lines Matching defs:nextPage

53254     Pgno nextPage;
53256 nextPage = get4byte(&aPayload[pCur->info.nLocal]);
53282 nextPage = pCur->aOverflow[iIdx];
53287 for( ; rc==SQLITE_OK && amt>0 && nextPage; iIdx++){
53292 assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage);
53293 pCur->aOverflow[iIdx] = nextPage;
53306 nextPage = pCur->aOverflow[iIdx+1];
53309 rc = getOverflowPage(pBt, nextPage, 0, &nextPage);
53345 rc = sqlite3OsRead(fd, aWrite, a+4, (i64)pBt->pageSize*(nextPage-1));
53346 nextPage = get4byte(aWrite);
53353 rc = sqlite3PagerGet(pBt->pPager, nextPage, &pDbPage);
53356 nextPage = get4byte(aPayload);