Lines Matching defs:rc2
43139 int rc2 = unixLogError(SQLITE_CANTOPEN_BKPT, "open", zName);
43140 if( rc==SQLITE_OK ) rc = rc2;
50271 int rc2, isRO = 0;
50273 rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO);
50275 if( rc2==SQLITE_OK && isRO ) break;
50288 int rc2, isRO = 0;
50290 rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO);
50292 if( rc2==SQLITE_OK && isRO ) break;
50308 int rc2, isRO = 0;
50310 rc2 = winAccess(pVfs, zName, SQLITE_ACCESS_READ, &isRO);
50312 if( rc2==SQLITE_OK && isRO ) break;
57426 int rc2 = rc & 0xff;
57433 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
57521 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
57620 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
57621 assert( rc2==SQLITE_OK );
57641 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
57646 return (rc==SQLITE_OK?rc2:rc);
62281 int rc2;
62283 rc2 = pager_end_transaction(pPager, pPager->setSuper, 0);
62284 if( rc==SQLITE_OK ) rc = rc2;
73009 int rc2 = sqlite3BtreeTripAllCursors(p, tripCode, writeOnly);
73010 assert( rc==SQLITE_OK || (writeOnly==0 && rc2==SQLITE_OK) );
73011 if( rc2!=SQLITE_OK ) rc = rc2;
73016 int rc2;
73019 rc2 = sqlite3PagerRollback(pBt->pPager);
73020 if( rc2!=SQLITE_OK ){
73021 rc = rc2;
80323 TESTONLY( int rc2 );
80324 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
80325 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
80326 assert( rc2==SQLITE_OK );
85602 int rc2 = SQLITE_OK;
85606 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
85608 if( rc2==SQLITE_OK ){
85609 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
85612 rc = rc2;
100936 int rc2 = vdbeSorterJoinThread(pTask);
100937 if( rc==SQLITE_OK ) rc = rc2;
101657 int rc2;
101686 rc2 = vdbePmaWriterFinish(&writer, &pOut->iEof);
101687 if( rc==SQLITE_OK ) rc = rc2;
182620 int rc2; /* Result of sqlite3_reset() */
182671 rc2 = sqlite3_reset(pStmt);
182672 if( rc==SQLITE_DONE ) rc = rc2;
191690 int rc2 = pLhs->nTerm - pRhs->nTerm;
191691 if( rc2<0 ){
191697 rc = rc2;
193410 int rc2;
193424 rc2 = sqlite3_reset(pAllLangid);
193425 if( rc==SQLITE_OK ) rc = rc2;
193506 int rc2 = sqlite3_finalize(pStmt);
193508 rc = rc2;
193546 int rc2;
193560 rc2 = sqlite3_reset(pStmt);
193561 if( rc==SQLITE_OK ) rc = rc2;
194152 int rc2; /* Return code from sqlite3_reset() */
194269 rc2 = sqlite3_reset(pSelect);
194270 if( rc==SQLITE_OK ) rc = rc2;
194433 int rc2;
194448 rc2 = sqlite3_reset(pSelect);
194449 if( rc==SQLITE_OK ) rc = rc2;
194569 int rc2; /* sqlite3_reset() return code */
194578 rc2 = sqlite3_reset(pFetch);
194579 if( rc==SQLITE_OK ) rc = rc2;
194720 int rc2;
194733 rc2 = sqlite3_reset(pSelect);
194734 if( rc==SQLITE_OK ) rc = rc2;
195181 int rc2;
195191 rc2 = sqlite3_reset(pAllLangid);
195192 if( rc==SQLITE_OK ) rc = rc2;
195690 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
195691 if( rc2!=SQLITE_OK ) rc = rc2;
203677 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
203692 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
203696 if( rc==SQLITE_OK ) rc = rc2;
203710 int rc2;
203724 rc2 = nodeRelease(pRtree, pParent);
203726 rc = rc2;
203904 int rc2;
203906 rc2 = nodeRelease(pRtree, pInsert);
203908 rc = rc2;
203971 int rc2;
203973 rc2 = nodeRelease(pRtree, pInsert);
203975 rc = rc2;
204021 int rc2;
204026 rc2 = nodeRelease(pRtree, pLeaf);
204028 rc = rc2;
204048 int rc2;
204055 rc2 = nodeRelease(pRtree, pChild);
204056 if( rc==SQLITE_OK ) rc = rc2;
204284 int rc2;
204287 rc2 = nodeRelease(pRtree, pLeaf);
204289 rc = rc2;
207016 int rc2;
207019 rc2 = nodeRelease(pRtree, pLeaf);
207021 rc = rc2;
210501 int rc2; /* sqlite3_finalize() return code */
210571 rc2 = sqlite3_finalize(pXInfo);
210572 if( rc==SQLITE_OK ) rc = rc2;
211040 int rc2;
211114 rc2 = sqlite3_finalize(pStmt);
211115 if( rc==SQLITE_OK ) rc = rc2;
211505 int rc2;
211566 rc2 = sqlite3_finalize(pStmt);
211567 if( rc==SQLITE_OK ) rc = rc2;
211620 int rc2;
211632 rc2 = sqlite3_finalize(pCnt);
211633 if( p->rc==SQLITE_OK ) p->rc = rc2;
211854 int rc2;
211856 rc2 = sqlite3_exec(p->dbMain, "PRAGMA main.wal_checkpoint=restart", 0, 0,0);
211857 if( rc2!=SQLITE_INTERNAL ) p->rc = rc2;
213048 int rc2 = sqlite3_exec(p->dbRbu, "DELETE FROM stat.rbu_state", 0, 0, 0);
213049 if( p->rc==SQLITE_DONE && rc2!=SQLITE_OK ) p->rc = rc2;
220127 int rc2;
220140 rc2 = sqlite3changeset_finalize(pIter2);
220141 if( rc==SQLITE_OK ) rc = rc2;
236092 int rc2;
236209 rc2 = sqlite3_finalize(pStmt);
236210 if( p->rc==SQLITE_OK ) p->rc = rc2;
240155 int rc2; /* sqlite3_reset() return code */
240202 rc2 = sqlite3_reset(pSeek);
240203 if( rc==SQLITE_OK ) rc = rc2;
240361 int rc, rc2;
240401 rc2 = sqlite3_reset(pScan);
240402 if( rc==SQLITE_OK ) rc = rc2;
240667 int rc2;
240709 rc2 = sqlite3_reset(pScan);
240710 if( rc==SQLITE_OK ) rc = rc2;