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

Lines Matching +refs:bs +refs:abort

939 #define SQLITE_ABORT        4   /* Callback routine requested an abort */
2258 ** ^This function causes any pending database operation to abort and
51565 ** we cannot simply return the error to the caller. Instead, abort
60472 ** so, abort any other statements this handle currently has active.
63955 } bs;
64381 sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pc, p->zSql, pOp->p4.z);
68153 #if 0 /* local variables moved into u.bs */
68157 #endif /* local variables moved into u.bs */
68160 u.bs.pC = p->apCsr[pOp->p1];
68161 assert( u.bs.pC!=0 );
68162 u.bs.pCrsr = u.bs.pC->pCursor;
68164 if( ALWAYS(u.bs.pCrsr!=0) ){
68165 rc = sqlite3VdbeCursorMoveto(u.bs.pC);
68167 assert( u.bs.pC->deferredMoveto==0 );
68168 assert( u.bs.pC->isTable==0 );
68169 if( !u.bs.pC->nullRow ){
68170 rc = sqlite3VdbeIdxRowid(db, u.bs.pCrsr, &u.bs.rowid);
68174 pOut->u.i = u.bs.rowid;
71722 ** an abort request is seen.
71781 ** there is an abort request.
72233 ** the tree or 2 to abort the tree walk.
82731 ** If an abort occurs after some of these writes have completed, then it will
82741 ** possible to abort a statement prior to completion. In order to
82742 ** perform this abort without corrupting the database, we need to make
82747 ** such that the abort must occur after the multiwrite. This makes
93019 /* If any row exist in the result set, record that fact and abort.
94230 ** always safely abort as soon as the first unused slot is found */
94343 /* If any row exist in the result set, record that fact and abort.
96409 int iAbortFlag; /* Mem address which causes query abort if positive */
96434 /* Create a label to jump to when we want to abort the query */
96467 int addrSetAbort; /* Set the abort flag and return */
96497 VdbeComment((v, "clear abort flag"));
96611 VdbeComment((v, "check abort flag"));
96644 ** the processing calls for the query to abort, this subroutine
96646 ** order to signal the caller to abort.
96650 VdbeComment((v, "set abort flag"));
97917 case OE_Abort: return "abort";
111006 /* SQLITE_ABORT */ "callback requested query abort",