Lines Matching refs:iRoot
12656 ** iRoot:
12688 u32 iRoot; /* Root page in original database */
13643 ** Parameter iRoot must be the root page of table zName in the INPUT
13649 i64 iRoot /* Root page of same table in INPUT db */
13677 pNew->iRoot = iRoot;
13781 i64 iRoot = sqlite3_column_int64(pSelect, 0);
13801 recoverAddTable(p, zTbl, iRoot);
13964 ** has root page iRoot in the input database. If such an object is found,
13967 static RecoverTable *recoverFindTable(sqlite3_recover *p, u32 iRoot){
13969 for(pRet=p->pTblList; pRet && pRet->iRoot!=iRoot; pRet=pRet->pNext);
14131 i64 iRoot = 0;
14136 if( recoverLostAndFoundFindRoot(p, iPage, &iRoot) ) return;
14144 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */
14335 i64 iRoot = sqlite3_column_int64(p1->pTbls, 0);
14336 p1->pTab = recoverFindTable(p, iRoot);
14358 sqlite3_bind_int64(pSel, 1, iRoot);