Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:SQLITE_DONE

952 #define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
3643 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3654 ** ^[SQLITE_DONE] means that the statement has finished executing
3676 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
3965 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6495 ** from source to destination, then it returns [SQLITE_DONE].
6498 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6531 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6546 ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
6551 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
6801 ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value
37905 ** If the journal header file appears to be corrupted, SQLITE_DONE is
37924 ** point, return SQLITE_DONE.
37928 return SQLITE_DONE;
37934 ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise,
37943 return SQLITE_DONE;
37991 return SQLITE_DONE;
38536 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
38601 return SQLITE_DONE;
38610 return SQLITE_DONE;
39091 ** pager_playback_one_page() call returns SQLITE_DONE or an IO error
39102 if( rc==SQLITE_DONE ){
39158 if( rc==SQLITE_DONE ){
39683 assert( rc!=SQLITE_DONE );
39698 assert( rc!=SQLITE_DONE );
39713 assert( rc!=SQLITE_DONE );
39732 assert( rc!=SQLITE_DONE );
42720 assert(rc!=SQLITE_DONE);
50152 ** point in calling this function again), return SQLITE_DONE.
50160 ** it returns SQLITE_DONE or an error, and that nFin is the
50180 return SQLITE_DONE;
50273 ** SQLITE_DONE is returned. If it is not finished, but no error occurred,
50283 rc = SQLITE_DONE;
50345 if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){
51035 rc = SQLITE_DONE;
51041 assert( next==0 || rc==SQLITE_DONE );
51056 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
55844 rc = SQLITE_DONE;
55855 if( rc==SQLITE_DONE
55950 rc = SQLITE_DONE;
56012 rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
56129 ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
58458 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
58488 rc = SQLITE_DONE;
60861 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
60941 if( rc==SQLITE_DONE ){
60961 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
60964 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
60965 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
63361 rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
65277 rc = SQLITE_DONE;
68008 if( rc==SQLITE_DONE ){
68706 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
77225 pParse->rc = SQLITE_DONE;
86596 (SQLITE_DONE==rc && !callbackIsInit
89882 if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK;
107027 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
110971 if( rc==SQLITE_DONE ){
110978 if( rc==SQLITE_DONE ){
111004 if( rc==SQLITE_DONE ){
111028 if( rc==SQLITE_DONE ){
111054 * SQLITE_ROW if a page is returned, SQLITE_DONE if out of pages,
111067 * interiorCursorNextPage() could still return SQLITE_DONE. This
111187 * SQLITE_ROW with the page in *ppPage, or SQLITE_DONE if out of
111225 return SQLITE_DONE;
111530 * SQLITE_DONE if all pages in the tree were exhausted.
111612 * a leaf page is found, SQLITE_DONE when no more leaves exist, or any
111617 return SQLITE_DONE;
111625 assert( rc==SQLITE_DONE );
111713 if( rc!=SQLITE_DONE && rc!=SQLITE_ROW ){
112151 if( rc==SQLITE_DONE ){
112935 /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
113019 ** "OUT" variables identified below, or SQLITE_DONE to indicate that
115433 if( rc==SQLITE_DONE ) rc = rc2;
116687 case SQLITE_DONE:
117679 if( rc==SQLITE_DONE ){
117767 return SQLITE_DONE;
117826 rc = SQLITE_DONE;
117836 return SQLITE_DONE;
118063 if( rc==SQLITE_DONE && pRet && isRequirePhrase ){
118067 if( rc==SQLITE_DONE ){
119350 return SQLITE_DONE;
120072 return SQLITE_DONE;
120197 ** (i.e. SQLITE_DONE).
120684 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
121006 ** SQLITE_DONE. Otherwise, an SQLite error code.
122316 ** segment in the database, SQLITE_DONE is returned immediately.
122338 rc = SQLITE_DONE;
122551 if( rc==SQLITE_DONE ){
122682 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
123454 if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; }
123456 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
123521 if( rc==SQLITE_DONE ){
124378 }else if( rc==SQLITE_DONE ){
124383 if( rc==SQLITE_DONE ){
124393 assert( rc!=SQLITE_DONE );
128380 return SQLITE_DONE;