Lines Matching refs:rc2

38565       int rc2 = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zName);
38566 if( rc==SQLITE_OK ) rc = rc2;
45747 int rc2, isRO = 0;
45749 rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO);
45751 if( rc2==SQLITE_OK && isRO ) break;
45764 int rc2, isRO = 0;
45766 rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO);
45768 if( rc2==SQLITE_OK && isRO ) break;
45784 int rc2, isRO = 0;
45786 rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO);
45788 if( rc2==SQLITE_OK && isRO ) break;
52521 int rc2 = rc & 0xff;
52528 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
52616 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
52715 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
52716 assert( rc2==SQLITE_OK );
52736 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
52742 return (rc==SQLITE_OK?rc2:rc);
57264 int rc2;
57266 rc2 = pager_end_transaction(pPager, pPager->setMaster, 0);
57267 if( rc==SQLITE_OK ) rc = rc2;
67370 int rc2 = sqlite3BtreeTripAllCursors(p, tripCode, writeOnly);
67371 assert( rc==SQLITE_OK || (writeOnly==0 && rc2==SQLITE_OK) );
67372 if( rc2!=SQLITE_OK ) rc = rc2;
67377 int rc2;
67380 rc2 = sqlite3PagerRollback(pBt->pPager);
67381 if( rc2!=SQLITE_OK ){
67382 rc = rc2;
74198 TESTONLY( int rc2 );
74199 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
74200 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
74201 assert( rc2==SQLITE_OK );
79061 int rc2 = SQLITE_OK;
79065 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
79067 if( rc2==SQLITE_OK ){
79068 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
79071 rc = rc2;
92873 int rc2 = vdbeSorterJoinThread(pTask);
92874 if( rc==SQLITE_OK ) rc = rc2;
93596 int rc2;
93625 rc2 = vdbePmaWriterFinish(&writer, &pOut->iEof);
93626 if( rc==SQLITE_OK ) rc = rc2;
163152 int rc2; /* Result of sqlite3_reset() */
163203 rc2 = sqlite3_reset(pStmt);
163204 if( rc==SQLITE_DONE ) rc = rc2;
172168 int rc2 = pLhs->nTerm - pRhs->nTerm;
172169 if( rc2<0 ){
172175 rc = rc2;
173865 int rc2;
173879 rc2 = sqlite3_reset(pAllLangid);
173880 if( rc==SQLITE_OK ) rc = rc2;
173962 int rc2 = sqlite3_finalize(pStmt);
173964 rc = rc2;
174002 int rc2;
174016 rc2 = sqlite3_reset(pStmt);
174017 if( rc==SQLITE_OK ) rc = rc2;
174599 int rc2; /* Return code from sqlite3_reset() */
174697 rc2 = sqlite3_reset(pSelect);
174698 if( rc==SQLITE_OK ) rc = rc2;
174861 int rc2;
174876 rc2 = sqlite3_reset(pSelect);
174877 if( rc==SQLITE_OK ) rc = rc2;
174994 int rc2; /* sqlite3_reset() return code */
175003 rc2 = sqlite3_reset(pFetch);
175004 if( rc==SQLITE_OK ) rc = rc2;
175145 int rc2;
175158 rc2 = sqlite3_reset(pSelect);
175159 if( rc==SQLITE_OK ) rc = rc2;
175577 int rc2;
175587 rc2 = sqlite3_reset(pAllLangid);
175588 if( rc==SQLITE_OK ) rc = rc2;
176081 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
176082 if( rc2!=SQLITE_OK ) rc = rc2;
183783 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
183798 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
183802 if( rc==SQLITE_OK ) rc = rc2;
183816 int rc2;
183829 rc2 = nodeRelease(pRtree, pParent);
183831 rc = rc2;
184009 int rc2;
184011 rc2 = nodeRelease(pRtree, pInsert);
184013 rc = rc2;
184076 int rc2;
184078 rc2 = nodeRelease(pRtree, pInsert);
184080 rc = rc2;
184126 int rc2;
184131 rc2 = nodeRelease(pRtree, pLeaf);
184133 rc = rc2;
184153 int rc2;
184160 rc2 = nodeRelease(pRtree, pChild);
184161 if( rc==SQLITE_OK ) rc = rc2;
184389 int rc2;
184392 rc2 = nodeRelease(pRtree, pLeaf);
184394 rc = rc2;
187108 int rc2;
187111 rc2 = nodeRelease(pRtree, pLeaf);
187113 rc = rc2;
190314 int rc2; /* sqlite3_finalize() return code */
190376 rc2 = sqlite3_finalize(pXInfo);
190377 if( rc==SQLITE_OK ) rc = rc2;
190843 int rc2;
190880 rc2 = sqlite3_finalize(pStmt);
190881 if( rc==SQLITE_OK ) rc = rc2;
191231 int rc2;
191292 rc2 = sqlite3_finalize(pStmt);
191293 if( rc==SQLITE_OK ) rc = rc2;
191340 int rc2;
191352 rc2 = sqlite3_finalize(pCnt);
191353 if( p->rc==SQLITE_OK ) p->rc = rc2;
191574 int rc2;
191576 rc2 = sqlite3_exec(p->dbMain, "PRAGMA main.wal_checkpoint=restart", 0, 0,0);
191577 if( rc2!=SQLITE_INTERNAL ) p->rc = rc2;
192754 int rc2 = sqlite3_exec(p->dbRbu, "DELETE FROM stat.rbu_state", 0, 0, 0);
192755 if( p->rc==SQLITE_DONE && rc2!=SQLITE_OK ) p->rc = rc2;
199287 int rc2;
199300 rc2 = sqlite3changeset_finalize(pIter2);
199301 if( rc==SQLITE_OK ) rc = rc2;
214749 int rc2;
214865 rc2 = sqlite3_finalize(pStmt);
214866 if( p->rc==SQLITE_OK ) p->rc = rc2;
218635 int rc2; /* sqlite3_reset() return code */
218671 rc2 = sqlite3_reset(pSeek);
218672 if( rc==SQLITE_OK ) rc = rc2;
218828 int rc, rc2;
218867 rc2 = sqlite3_reset(pScan);
218868 if( rc==SQLITE_OK ) rc = rc2;
219127 int rc2;
219168 rc2 = sqlite3_reset(pScan);
219169 if( rc==SQLITE_OK ) rc = rc2;