Home | History | Annotate | Download | only in src

Lines Matching defs:pBt

962   if( i!=1 && sqlite3BtreeSharable(p->db->aDb[i].pBt) ){
1000 if( i!=1 && (mask & p->lockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){
1001 sqlite3BtreeEnter(aDb[i].pBt);
1022 if( i!=1 && (mask & p->lockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){
1023 sqlite3BtreeLeave(aDb[i].pBt);
1539 if( pCx->pBt ){
1540 sqlite3BtreeClose(pCx->pBt);
1725 Btree *pBt = db->aDb[i].pBt;
1726 if( sqlite3BtreeIsInTrans(pBt) ){
1729 rc = sqlite3PagerExclusiveLock(sqlite3BtreePager(pBt));
1753 if( 0==sqlite3Strlen30(sqlite3BtreeGetFilename(db->aDb[0].pBt))
1757 Btree *pBt = db->aDb[i].pBt;
1758 if( pBt ){
1759 rc = sqlite3BtreeCommitPhaseOne(pBt, 0);
1769 Btree *pBt = db->aDb[i].pBt;
1770 if( pBt ){
1771 rc = sqlite3BtreeCommitPhaseTwo(pBt, 0);
1788 char const *zMainFile = sqlite3BtreeGetFilename(db->aDb[0].pBt);
1823 Btree *pBt = db->aDb[i].pBt;
1824 if( sqlite3BtreeIsInTrans(pBt) ){
1825 char const *zFile = sqlite3BtreeGetJournalname(pBt);
1830 if( !needSync && !sqlite3BtreeSyncDisabled(pBt) ){
1868 Btree *pBt = db->aDb[i].pBt;
1869 if( pBt ){
1870 rc = sqlite3BtreeCommitPhaseOne(pBt, zMaster);
1901 Btree *pBt = db->aDb[i].pBt;
1902 if( pBt ){
1903 sqlite3BtreeCommitPhaseTwo(pBt, 1);
1964 Btree *p = db->aDb[i].pBt;
2000 Btree *pBt = db->aDb[i].pBt;
2001 if( pBt ){
2003 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
2006 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);