Home | History | Annotate | Download | only in orig

Lines Matching refs:rc2

40244   int rc2 = rc & 0xff;
40251 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
40313 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
40394 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
40395 assert( rc2==SQLITE_OK );
40400 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
40406 return (rc==SQLITE_OK?rc2:rc);
44452 int rc2;
44454 rc2 = pager_end_transaction(pPager, pPager->setMaster);
44455 if( rc==SQLITE_OK ) rc = rc2;
52687 int rc2;
52690 rc2 = sqlite3PagerRollback(pBt->pPager);
52691 if( rc2!=SQLITE_OK ){
52692 rc = rc2;
58156 TESTONLY( int rc2 );
58157 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
58158 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
58159 assert( rc2==SQLITE_OK );
61543 int rc2 = SQLITE_OK;
61547 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
61549 if( rc2==SQLITE_OK ){
61550 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
61553 rc = rc2;
63224 int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */
63236 && (rc2 = rc = sqlite3Reprepare(v))==SQLITE_OK ){
63240 if( rc2!=SQLITE_OK && ALWAYS(v->isPrepareV2) && ALWAYS(db->pErr) ){
63253 v->rc = rc2;
119246 int rc2; /* Result of sqlite3_reset() */
119297 rc2 = sqlite3_reset(pStmt);
119298 if( rc==SQLITE_DONE ) rc = rc2;
126706 int rc2 = pLhs->nTerm - pRhs->nTerm;
126707 if( rc2<0 ){
126713 rc = rc2;
128126 int rc2;
128139 rc2 = sqlite3_reset(pAllLangid);
128140 if( rc==SQLITE_OK ) rc = rc2;
128220 int rc2 = sqlite3_finalize(pStmt);
128222 rc = rc2;
128597 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
128598 if( rc2!=SQLITE_OK ) rc = rc2;
130584 int rc2 = SQLITE_OK;
130608 rc2 = SQLITE_NOMEM;
130622 if( rc==SQLITE_OK ) rc = rc2;
132430 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
132445 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
132449 if( rc==SQLITE_OK ) rc = rc2;
132460 int rc2;
132473 rc2 = nodeRelease(pRtree, pParent);
132475 rc = rc2;
132651 int rc2;
132653 rc2 = nodeRelease(pRtree, pInsert);
132655 rc = rc2;
132722 int rc2;
132724 rc2 = nodeRelease(pRtree, pInsert);
132726 rc = rc2;
132768 int rc2;
132773 rc2 = nodeRelease(pRtree, pLeaf);
132775 rc = rc2;
132795 int rc2;
132802 rc2 = nodeRelease(pRtree, pChild);
132803 if( rc==SQLITE_OK ) rc = rc2;
132933 int rc2;
132936 rc2 = nodeRelease(pRtree, pLeaf);
132938 rc = rc2;