Lines Matching defs:iRoot
16516 ** iRoot:
16548 u32 iRoot; /* Root page in original database */
17506 ** Parameter iRoot must be the root page of table zName in the INPUT
17512 i64 iRoot /* Root page of same table in INPUT db */
17540 pNew->iRoot = iRoot;
17644 i64 iRoot = sqlite3_column_int64(pSelect, 0);
17664 if( zTbl ) recoverAddTable(p, zTbl, iRoot);
17827 ** has root page iRoot in the input database. If such an object is found,
17830 static RecoverTable *recoverFindTable(sqlite3_recover *p, u32 iRoot){
17832 for(pRet=p->pTblList; pRet && pRet->iRoot!=iRoot; pRet=pRet->pNext);
17994 i64 iRoot = 0;
17999 if( recoverLostAndFoundFindRoot(p, iPage, &iRoot) ) return;
18007 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */
18198 i64 iRoot = sqlite3_column_int64(p1->pTbls, 0);
18199 p1->pTab = recoverFindTable(p, iRoot);
18221 sqlite3_bind_int64(pSel, 1, iRoot);