• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/Heimdal-398.1.2/lib/sqlite/

Lines Matching defs:rc2

39354   int rc2 = rc & 0xff;
39361 if( rc2==SQLITE_FULL || rc2==SQLITE_IOERR ){
39423 int rc2 = SQLITE_OK; /* Error code from db file unlock operation */
39504 rc2 = sqlite3WalEndWriteTransaction(pPager->pWal);
39505 assert( rc2==SQLITE_OK );
39510 rc2 = pagerUnlockDb(pPager, SHARED_LOCK);
39516 return (rc==SQLITE_OK?rc2:rc);
43537 int rc2;
43539 rc2 = pager_end_transaction(pPager, pPager->setMaster);
43540 if( rc==SQLITE_OK ) rc = rc2;
51574 int rc2;
51577 rc2 = sqlite3PagerRollback(pBt->pPager);
51578 if( rc2!=SQLITE_OK ){
51579 rc = rc2;
56967 TESTONLY( int rc2 );
56968 TESTONLY( rc2 = ) sqlite3BtreeCommitPhaseOne(p->pSrc, 0);
56969 TESTONLY( rc2 |= ) sqlite3BtreeCommitPhaseTwo(p->pSrc, 0);
56970 assert( rc2==SQLITE_OK );
60339 int rc2 = SQLITE_OK;
60343 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
60345 if( rc2==SQLITE_OK ){
60346 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
60349 rc = rc2;
62021 int rc2 = SQLITE_OK; /* Result from sqlite3Reprepare() */
62033 && (rc2 = rc = sqlite3Reprepare(v))==SQLITE_OK ){
62037 if( rc2!=SQLITE_OK && ALWAYS(v->isPrepareV2) && ALWAYS(db->pErr) ){
62050 v->rc = rc2;
116568 int rc2; /* Result of sqlite3_reset() */
116617 rc2 = sqlite3_reset(pStmt);
116618 if( rc==SQLITE_DONE ) rc = rc2;
123796 int rc2 = pLhs->nTerm - pRhs->nTerm;
123797 if( rc2<0 ){
123803 rc = rc2;
125516 int rc2 = sqlite3_exec(p->db, "RELEASE fts3", 0, 0, 0);
125517 if( rc2!=SQLITE_OK ) rc = rc2;
127500 int rc2 = SQLITE_OK;
127524 rc2 = SQLITE_NOMEM;
127538 if( rc==SQLITE_OK ) rc = rc2;
129341 int rc2 = SQLITE_OK; /* sqlite3_reset() return code */
129356 rc2 = nodeAcquire(pRtree, iNode, 0, &pChild->pParent);
129360 if( rc==SQLITE_OK ) rc = rc2;
129371 int rc2;
129384 rc2 = nodeRelease(pRtree, pParent);
129386 rc = rc2;
129562 int rc2;
129564 rc2 = nodeRelease(pRtree, pInsert);
129566 rc = rc2;
129633 int rc2;
129635 rc2 = nodeRelease(pRtree, pInsert);
129637 rc = rc2;
129679 int rc2;
129684 rc2 = nodeRelease(pRtree, pLeaf);
129686 rc = rc2;
129706 int rc2;
129713 rc2 = nodeRelease(pRtree, pChild);
129714 if( rc==SQLITE_OK ) rc = rc2;
129844 int rc2;
129847 rc2 = nodeRelease(pRtree, pLeaf);
129849 rc = rc2;