Lines Matching refs:rc2

43479   int rc2 = rc & 0xff;
43486 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
43550 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
43640 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
43641 assert( rc2==SQLITE_OK );
43661 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
43667 return (rc==SQLITE_OK?rc2:rc);
47989 int rc2;
47991 rc2 = pager_end_transaction(pPager, pPager->setMaster, 0);
47992 if( rc==SQLITE_OK ) rc = rc2;
56737 int rc2 = sqlite3BtreeTripAllCursors(p, tripCode, writeOnly);
56738 assert( rc==SQLITE_OK || (writeOnly==0 && rc2==SQLITE_OK) );
56739 if( rc2!=SQLITE_OK ) rc = rc2;
56744 int rc2;
56747 rc2 = sqlite3PagerRollback(pBt->pPager);
56748 if( rc2!=SQLITE_OK ){
56749 rc = rc2;
62876 TESTONLY( int rc2 );
62877 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
62878 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
62879 assert( rc2==SQLITE_OK );
67027 int rc2 = SQLITE_OK;
67031 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
67033 if( rc2==SQLITE_OK ){
67034 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
67037 rc = rc2;
69541 int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */
69555 rc2 = rc = sqlite3Reprepare(v);
69561 if( rc2!=SQLITE_OK ){
69574 v->rc = rc2;
79045 int rc2 = vdbeSorterJoinThread(pTask);
79046 if( rc==SQLITE_OK ) rc = rc2;
79757 int rc2;
79786 rc2 = vdbePmaWriterFinish(&writer, &pOut->iEof);
79787 if( rc==SQLITE_OK ) rc = rc2;
135807 int rc2; /* Result of sqlite3_reset() */
135858 rc2 = sqlite3_reset(pStmt);
135859 if( rc==SQLITE_DONE ) rc = rc2;
144722 int rc2 = pLhs->nTerm - pRhs->nTerm;
144723 if( rc2<0 ){
144729 rc = rc2;
146405 int rc2;
146419 rc2 = sqlite3_reset(pAllLangid);
146420 if( rc==SQLITE_OK ) rc = rc2;
146502 int rc2 = sqlite3_finalize(pStmt);
146504 rc = rc2;
146542 int rc2;
146556 rc2 = sqlite3_reset(pStmt);
146557 if( rc==SQLITE_OK ) rc = rc2;
147134 int rc2; /* Return code from sqlite3_reset() */
147232 rc2 = sqlite3_reset(pSelect);
147233 if( rc==SQLITE_OK ) rc = rc2;
147396 int rc2;
147411 rc2 = sqlite3_reset(pSelect);
147412 if( rc==SQLITE_OK ) rc = rc2;
147529 int rc2; /* sqlite3_reset() return code */
147538 rc2 = sqlite3_reset(pFetch);
147539 if( rc==SQLITE_OK ) rc = rc2;
147678 int rc2;
147691 rc2 = sqlite3_reset(pSelect);
147692 if( rc==SQLITE_OK ) rc = rc2;
148106 int rc2;
148116 rc2 = sqlite3_reset(pAllLangid);
148117 if( rc==SQLITE_OK ) rc = rc2;
148612 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
148613 if( rc2!=SQLITE_OK ) rc = rc2;
151484 int rc2 = SQLITE_OK;
151508 rc2 = SQLITE_NOMEM;
151522 if( rc==SQLITE_OK ) rc = rc2;
153332 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
153347 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
153351 if( rc==SQLITE_OK ) rc = rc2;
153362 int rc2;
153375 rc2 = nodeRelease(pRtree, pParent);
153377 rc = rc2;
153555 int rc2;
153557 rc2 = nodeRelease(pRtree, pInsert);
153559 rc = rc2;
153622 int rc2;
153624 rc2 = nodeRelease(pRtree, pInsert);
153626 rc = rc2;
153668 int rc2;
153673 rc2 = nodeRelease(pRtree, pLeaf);
153675 rc = rc2;
153695 int rc2;
153702 rc2 = nodeRelease(pRtree, pChild);
153703 if( rc==SQLITE_OK ) rc = rc2;
153876 int rc2;
153879 rc2 = nodeRelease(pRtree, pLeaf);
153881 rc = rc2;