Home | History | Annotate | Download | only in dist

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
39906 ** If the journal header file appears to be corrupted, SQLITE_DONE is
39925 ** point, return SQLITE_DONE.
39929 return SQLITE_DONE;
39935 ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise,
39944 return SQLITE_DONE;
39992 return SQLITE_DONE;
40537 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
40602 return SQLITE_DONE;
40611 return SQLITE_DONE;
41104 ** pager_playback_one_page() call returns SQLITE_DONE or an IO error
41115 if( rc==SQLITE_DONE ){
41171 if( rc==SQLITE_DONE ){
41693 assert( rc!=SQLITE_DONE );
41708 assert( rc!=SQLITE_DONE );
41723 assert( rc!=SQLITE_DONE );
41742 assert( rc!=SQLITE_DONE );
44726 assert(rc!=SQLITE_DONE);
52270 ** point in calling this function again), return SQLITE_DONE.
52278 ** it returns SQLITE_DONE or an error, and that nFin is the
52298 return SQLITE_DONE;
52391 ** SQLITE_DONE is returned. If it is not finished, but no error occurred,
52401 rc = SQLITE_DONE;
52463 if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){
53152 rc = SQLITE_DONE;
53158 assert( next==0 || rc==SQLITE_DONE );
53173 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
58064 rc = SQLITE_DONE;
58075 if( rc==SQLITE_DONE ){
58173 rc = SQLITE_DONE;
58236 rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
58363 ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
60703 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
60733 rc = SQLITE_DONE;
63123 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
63203 if( rc==SQLITE_DONE ){
63223 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
63226 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
63227 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
65747 rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
67736 rc = SQLITE_DONE;
70582 if( rc==SQLITE_DONE ){
71300 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
81436 pParse->rc = SQLITE_DONE;
90916 (SQLITE_DONE==rc && !callbackIsInit
94290 if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK;
112046 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
116214 /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
116298 ** "OUT" variables identified below, or SQLITE_DONE to indicate that
119334 if( rc==SQLITE_DONE ) rc = rc2;
119965 case SQLITE_DONE:
122625 ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below,
122664 if( rc==SQLITE_DONE ){
122754 return SQLITE_DONE;
122813 rc = SQLITE_DONE;
122823 return SQLITE_DONE;
123049 if( rc==SQLITE_DONE && pRet && isRequirePhrase ){
123053 if( rc==SQLITE_DONE ){
124350 return SQLITE_DONE;
125075 return SQLITE_DONE;
125233 ** (i.e. SQLITE_DONE).
125857 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
126292 ** SQLITE_DONE. Otherwise, an SQLite error code.
127914 ** segment in the database, SQLITE_DONE is returned immediately.
127948 rc = SQLITE_DONE;
128007 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
128179 if( rc==SQLITE_DONE ){
128192 return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc;
128383 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
128642 if( rc==SQLITE_OK || rc==SQLITE_DONE ){
129236 if( rc!=SQLITE_OK && rc!=SQLITE_DONE
129238 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
129302 if( rc==SQLITE_DONE ){
130071 rc = SQLITE_DONE;
130088 }else if( rc==SQLITE_DONE && pTab->zContentTbl==0 ){
130093 if( rc==SQLITE_DONE ){
130103 assert( rc!=SQLITE_DONE );
134141 return SQLITE_DONE;