Home | History | Annotate | Download | only in orig

Lines Matching refs:aOverflow

48935   Pgno *aOverflow;          /* Cache of overflow page locations */
49801 sqlite3_free(pCur->aOverflow);
49802 pCur->aOverflow = 0;
53196 ** cache array (BtCursor.aOverflow). Subsequent calls use this
53259 /* If the isIncrblobHandle flag is set and the BtCursor.aOverflow[]
53262 ** page number of the first overflow page is stored in aOverflow[0],
53263 ** etc. A value of 0 in the aOverflow[] array means "not yet known"
53266 if( pCur->isIncrblobHandle && !pCur->aOverflow ){
53268 pCur->aOverflow = (Pgno *)sqlite3MallocZero(sizeof(Pgno)*nOvfl);
53271 if( ALWAYS(nOvfl) && !pCur->aOverflow ){
53280 if( pCur->aOverflow && pCur->aOverflow[offset/ovflSize] ){
53282 nextPage = pCur->aOverflow[iIdx];
53291 if( pCur->aOverflow ){
53292 assert(!pCur->aOverflow[iIdx] || pCur->aOverflow[iIdx]==nextPage);
53293 pCur->aOverflow[iIdx] = nextPage;
53305 if( pCur->aOverflow && pCur->aOverflow[iIdx+1] ){
53306 nextPage = pCur->aOverflow[iIdx+1];
57587 ** (stored in BtCursor.aOverflow[]) is allocated and used by function