Lines Matching refs:aRoot

17381   Pgno *aRoot,  /* An array of root pages numbers for individual trees */
84250 Pgno *aRoot, /* An array of root pages numbers for individual trees */ argument
84270 if( aRoot[0]==0 ){
84273 if( aRoot[1]!=1 ) bCkFreelist = 0;
84322 for(i=0; (int)i<nRoot; i++) if( mx<aRoot[i] ) mx = aRoot[i];
84341 if( aRoot[i] ){
84344 if( pBt->autoVacuum && aRoot[i]>1 && !bPartial ){
84345 checkPtrmap(&sCheck, aRoot[i], PTRMAP_ROOTPAGE, 0);
84348 sCheck.v0 = aRoot[i];
84349 checkTreePage(&sCheck, aRoot[i], &notUsed, LARGEST_INT64);
103713 Pgno *aRoot; /* Array of rootpage numbers for tables to be checked */ local
103721 aRoot = pOp->p4.ai;
103723 assert( aRoot!=0 );
103724 assert( aRoot[0]==(Pgno)nRoot );
103732 rc = sqlite3BtreeIntegrityCheck(db, db->aDb[pOp->p5].pBt, &aRoot[1],
123602 u32 aRoot[ArraySize(aTable)]; local
123632 aRoot[i] = (u32)pParse->u1.cr.regRoot;
123639 aRoot[i] = pStat->tnum;
123640 sqlite3TableLock(pParse, iDb, aRoot[i], 1, zTab);
123652 sqlite3VdbeAddOp2(v, OP_Clear, (int)aRoot[i], iDb);
123660 sqlite3VdbeAddOp4Int(v, OP_OpenWrite, iStatCur+i, (int)aRoot[i], iDb, 3);
146303 int *aRoot; /* Array of root page numbers of all btrees */ local
146329 aRoot = sqlite3DbMallocRawNN(db, sizeof(int)*(cnt+1));
146330 if( aRoot==0 ) break;
146332 if( pObjTab ) aRoot[++cnt] = 0;
146337 if( HasRowid(pTab) ) aRoot[++cnt] = pTab->tnum;
146339 aRoot[++cnt] = pIdx->tnum;
146342 aRoot[0] = cnt;
146350 sqlite3VdbeAddOp4(v, OP_IntegrityCk, 1, cnt, 8, (char*)aRoot,P4_INTARRAY);
208281 const char *aRoot = 0; /* Pointer to %_segdir.root buffer */ local
208298 aRoot = sqlite3_column_blob(pSelect, 4);
208299 if( aRoot==0 ){
208336 int nHeight = (int)aRoot[0];
208359 memcpy(pNode->block.a, aRoot, nRoot);
208705 const char *aRoot = sqlite3_column_blob(pFetch, 4); local
208708 rc = fts3TruncateNode(aRoot, nRoot, &root, zTerm, nTerm, &iBlock);