Lines Matching defs:rc2

40174   int rc2 = rc & 0xff;
40181 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
40245 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
40327 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
40328 assert( rc2==SQLITE_OK );
40343 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
40349 return (rc==SQLITE_OK?rc2:rc);
44606 int rc2;
44608 rc2 = pager_end_transaction(pPager, pPager->setMaster, 0);
44609 if( rc==SQLITE_OK ) rc = rc2;
52983 int rc2;
52986 rc2 = sqlite3PagerRollback(pBt->pPager);
52987 if( rc2!=SQLITE_OK ){
52988 rc = rc2;
58588 TESTONLY( int rc2 );
58589 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
58590 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
58591 assert( rc2==SQLITE_OK );
61970 int rc2 = SQLITE_OK;
61974 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
61976 if( rc2==SQLITE_OK ){
61977 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
61980 rc = rc2;
63663 int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */
63676 && (rc2 = rc = sqlite3Reprepare(v))==SQLITE_OK ){
63681 if( rc2!=SQLITE_OK && ALWAYS(v->isPrepareV2) && ALWAYS(db->pErr) ){
63694 v->rc = rc2;
73058 int rc2; /* Return code from fileWriterFinish() */
73097 rc2 = fileWriterFinish(db, &writer, &iWrite2);
73098 if( rc==SQLITE_OK ) rc = rc2;
120643 int rc2 = SQLITE_OK;
120644 fts3DbExec(&rc2, db, "SELECT 1 FROM %Q.'%q_stat' WHERE id=2",
120646 if( rc2==SQLITE_OK ) p->bHasStat = 1;
121929 int rc2; /* Result of sqlite3_reset() */
121980 rc2 = sqlite3_reset(pStmt);
121981 if( rc==SQLITE_DONE ) rc = rc2;
130376 int rc2 = pLhs->nTerm - pRhs->nTerm;
130377 if( rc2<0 ){
130383 rc = rc2;
131866 int rc2;
131879 rc2 = sqlite3_reset(pAllLangid);
131880 if( rc==SQLITE_OK ) rc = rc2;
131960 int rc2 = sqlite3_finalize(pStmt);
131962 rc = rc2;
132000 int rc2;
132014 rc2 = sqlite3_reset(pStmt);
132015 if( rc==SQLITE_OK ) rc = rc2;
132589 int rc2; /* Return code from sqlite3_reset() */
132683 rc2 = sqlite3_reset(pSelect);
132684 if( rc==SQLITE_OK ) rc = rc2;
132847 int rc2;
132862 rc2 = sqlite3_reset(pSelect);
132863 if( rc==SQLITE_OK ) rc = rc2;
132980 int rc2; /* sqlite3_reset() return code */
132989 rc2 = sqlite3_reset(pFetch);
132990 if( rc==SQLITE_OK ) rc = rc2;
133129 int rc2;
133142 rc2 = sqlite3_reset(pSelect);
133143 if( rc==SQLITE_OK ) rc = rc2;
133538 int rc2;
133547 rc2 = sqlite3_reset(pAllLangid);
133548 if( rc==SQLITE_OK ) rc = rc2;
134030 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
134031 if( rc2!=SQLITE_OK ) rc = rc2;
136816 int rc2 = SQLITE_OK;
136840 rc2 = SQLITE_NOMEM;
136854 if( rc==SQLITE_OK ) rc = rc2;
138667 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
138682 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
138686 if( rc==SQLITE_OK ) rc = rc2;
138697 int rc2;
138710 rc2 = nodeRelease(pRtree, pParent);
138712 rc = rc2;
138890 int rc2;
138892 rc2 = nodeRelease(pRtree, pInsert);
138894 rc = rc2;
138961 int rc2;
138963 rc2 = nodeRelease(pRtree, pInsert);
138965 rc = rc2;
139007 int rc2;
139012 rc2 = nodeRelease(pRtree, pLeaf);
139014 rc = rc2;
139034 int rc2;
139041 rc2 = nodeRelease(pRtree, pChild);
139042 if( rc==SQLITE_OK ) rc = rc2;
139205 int rc2;
139208 rc2 = nodeRelease(pRtree, pLeaf);
139210 rc = rc2;