Home
last modified time | relevance | path

Searched refs:aOvfl (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Ddbstat.c96 u32 *aOvfl; /* Array of overflow page numbers */ member
308 sqlite3_free(p->aCell[i].aOvfl); in statClearCells()
476 pCell->aOvfl = sqlite3_malloc64(sizeof(u32)*nOvfl); in statDecodePage()
477 if( pCell->aOvfl==0 ) return SQLITE_NOMEM_BKPT; in statDecodePage()
478 pCell->aOvfl[0] = sqlite3Get4byte(&aData[iOff+nLocal]); in statDecodePage()
481 u32 iPrev = pCell->aOvfl[j-1]; in statDecodePage()
488 pCell->aOvfl[j] = sqlite3Get4byte(sqlite3PagerGetData(pPg)); in statDecodePage()
629 pCsr->iPageno = pCell->aOvfl[iOvfl]; in statNext()
/sqlite-3.40.0/ext/recover/
H A Ddbdata.c626 u8 *aOvfl = 0; in dbdataNext() local
629 rc = dbdataLoadPage(pCsr, pgnoOvfl, &aOvfl, &nOvfl); in dbdataNext()
630 assert( rc!=SQLITE_OK || aOvfl==0 || nOvfl==pCsr->nPage ); in dbdataNext()
632 if( aOvfl==0 ) break; in dbdataNext()
636 memcpy(&pCsr->pRec[nPayload-nRem], &aOvfl[4], nCopy); in dbdataNext()
639 pgnoOvfl = get_uint32(aOvfl); in dbdataNext()
640 sqlite3_free(aOvfl); in dbdataNext()