Searched refs:iRoot (Results 1 – 2 of 2) sorted by relevance
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 15285 u32 iRoot; /* Root page in original database */ member 16249 i64 iRoot /* Root page of same table in INPUT db */ in recoverAddTable() argument 16277 pNew->iRoot = iRoot; in recoverAddTable() 16381 i64 iRoot = sqlite3_column_int64(pSelect, 0); in recoverWriteSchema1() local 16401 recoverAddTable(p, zTbl, iRoot); in recoverWriteSchema1() 16567 static RecoverTable *recoverFindTable(sqlite3_recover *p, u32 iRoot){ in recoverFindTable() argument 16569 for(pRet=p->pTblList; pRet && pRet->iRoot!=iRoot; pRet=pRet->pNext); in recoverFindTable() 16731 i64 iRoot = 0; in recoverLostAndFoundOnePage() local 16736 if( recoverLostAndFoundFindRoot(p, iPage, &iRoot) ) return; in recoverLostAndFoundOnePage() 16744 sqlite3_bind_int64(pInsert, 1, iRoot); /* rootpgno */ in recoverLostAndFoundOnePage() [all …]
|
| H A D | sqlite3.c | 70364 Pgno iRoot, /* Root page of b-tree */ 70400 if( pIdx->tnum==iRoot ){ 70412 iTab = iRoot; 70451 static int hasReadConflicts(Btree *pBtree, Pgno iRoot){ 70454 if( p->pgnoRoot==iRoot 70941 static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){ 70946 if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ) break; 70948 if( p ) return saveCursorsOnList(p, iRoot, pExcept); 70960 Pgno iRoot, /* Only save cursor with this iRoot. Save all if zero */ 70964 if( p!=pExcept && (0==iRoot || p->pgnoRoot==iRoot) ){ [all …]
|