Home | History | Annotate | Download | only in orig

Lines Matching refs:SQLITE_DONE

960 #define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
3959 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3970 ** ^[SQLITE_DONE] means that the statement has finished executing
3992 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
4032 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
4287 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6933 ** from source to destination, then it returns [SQLITE_DONE].
6936 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6969 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6984 SQLITE_DONE], or when the
6989 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
7241 ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value
39878 ** If the journal header file appears to be corrupted, SQLITE_DONE is
39897 ** point, return SQLITE_DONE.
39901 return SQLITE_DONE;
39907 ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise,
39916 return SQLITE_DONE;
39964 return SQLITE_DONE;
40509 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
40574 return SQLITE_DONE;
40583 return SQLITE_DONE;
41076 ** pager_playback_one_page() call returns SQLITE_DONE or an IO error
41087 if( rc==SQLITE_DONE ){
41143 if( rc==SQLITE_DONE ){
41665 assert( rc!=SQLITE_DONE );
41680 assert( rc!=SQLITE_DONE );
41695 assert( rc!=SQLITE_DONE );
41714 assert( rc!=SQLITE_DONE );
44698 assert(rc!=SQLITE_DONE);
52242 ** point in calling this function again), return SQLITE_DONE.
52250 ** it returns SQLITE_DONE or an error, and that nFin is the
52270 return SQLITE_DONE;
52363 ** SQLITE_DONE is returned. If it is not finished, but no error occurred,
52373 rc = SQLITE_DONE;
52435 if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){
53124 rc = SQLITE_DONE;
53130 assert( next==0 || rc==SQLITE_DONE );
53145 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
58036 rc = SQLITE_DONE;
58047 if( rc==SQLITE_DONE ){
58145 rc = SQLITE_DONE;
58208 rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
58335 ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
60675 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
60705 rc = SQLITE_DONE;
63095 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
63175 if( rc==SQLITE_DONE ){
63195 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
63198 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
63199 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
65719 rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
67708 rc = SQLITE_DONE;
70554 if( rc==SQLITE_DONE ){
71272 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
81400 pParse->rc = SQLITE_DONE;
90880 (SQLITE_DONE==rc && !callbackIsInit
94254 if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK;
112010 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
116178 /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
116262 ** "OUT" variables identified below, or SQLITE_DONE to indicate that
119298 if( rc==SQLITE_DONE ) rc = rc2;
119929 case SQLITE_DONE:
122579 ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below,
122618 if( rc==SQLITE_DONE ){
122708 return SQLITE_DONE;
122767 rc = SQLITE_DONE;
122777 return SQLITE_DONE;
123003 if( rc==SQLITE_DONE && pRet && isRequirePhrase ){
123007 if( rc==SQLITE_DONE ){
124304 return SQLITE_DONE;
125029 return SQLITE_DONE;
125187 ** (i.e. SQLITE_DONE).
125811 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
126246 ** SQLITE_DONE. Otherwise, an SQLite error code.
127868 ** segment in the database, SQLITE_DONE is returned immediately.
127902 rc = SQLITE_DONE;
127961 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
128133 if( rc==SQLITE_DONE ){
128146 return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc;
128337 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
128596 if( rc==SQLITE_OK || rc==SQLITE_DONE ){
129190 if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; }
129192 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
129256 if( rc==SQLITE_DONE ){
130025 rc = SQLITE_DONE;
130042 }else if( rc==SQLITE_DONE && pTab->zContentTbl==0 ){
130047 if( rc==SQLITE_DONE ){
130057 assert( rc!=SQLITE_DONE );
134095 return SQLITE_DONE;