Home | History | Annotate | Download | only in dist

Lines Matching refs:rc2

40272   int rc2 = rc & 0xff;
40279 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
40341 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
40422 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
40423 assert( rc2==SQLITE_OK );
40428 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
40434 return (rc==SQLITE_OK?rc2:rc);
44480 int rc2;
44482 rc2 = pager_end_transaction(pPager, pPager->setMaster);
44483 if( rc==SQLITE_OK ) rc = rc2;
52715 int rc2;
52718 rc2 = sqlite3PagerRollback(pBt->pPager);
52719 if( rc2!=SQLITE_OK ){
52720 rc = rc2;
58184 TESTONLY( int rc2 );
58185 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
58186 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
58187 assert( rc2==SQLITE_OK );
61571 int rc2 = SQLITE_OK;
61575 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
61577 if( rc2==SQLITE_OK ){
61578 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
61581 rc = rc2;
63252 int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */
63264 && (rc2 = rc = sqlite3Reprepare(v))==SQLITE_OK ){
63268 if( rc2!=SQLITE_OK && ALWAYS(v->isPrepareV2) && ALWAYS(db->pErr) ){
63281 v->rc = rc2;
119282 int rc2; /* Result of sqlite3_reset() */
119333 rc2 = sqlite3_reset(pStmt);
119334 if( rc==SQLITE_DONE ) rc = rc2;
126752 int rc2 = pLhs->nTerm - pRhs->nTerm;
126753 if( rc2<0 ){
126759 rc = rc2;
128172 int rc2;
128185 rc2 = sqlite3_reset(pAllLangid);
128186 if( rc==SQLITE_OK ) rc = rc2;
128266 int rc2 = sqlite3_finalize(pStmt);
128268 rc = rc2;
128643 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
128644 if( rc2!=SQLITE_OK ) rc = rc2;
130630 int rc2 = SQLITE_OK;
130654 rc2 = SQLITE_NOMEM;
130668 if( rc==SQLITE_OK ) rc = rc2;
132476 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
132491 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
132495 if( rc==SQLITE_OK ) rc = rc2;
132506 int rc2;
132519 rc2 = nodeRelease(pRtree, pParent);
132521 rc = rc2;
132697 int rc2;
132699 rc2 = nodeRelease(pRtree, pInsert);
132701 rc = rc2;
132768 int rc2;
132770 rc2 = nodeRelease(pRtree, pInsert);
132772 rc = rc2;
132814 int rc2;
132819 rc2 = nodeRelease(pRtree, pLeaf);
132821 rc = rc2;
132841 int rc2;
132848 rc2 = nodeRelease(pRtree, pChild);
132849 if( rc==SQLITE_OK ) rc = rc2;
132979 int rc2;
132982 rc2 = nodeRelease(pRtree, pLeaf);
132984 rc = rc2;