• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/

Lines Matching refs:SQLITE_DONE

963 #define SQLITE_DONE        101  /* sqlite3_step() has finished executing */
3837 ** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
3848 ** ^[SQLITE_DONE] means that the statement has finished executing
3870 ** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
4159 ** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
6695 ** from source to destination, then it returns [SQLITE_DONE].
6698 ** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
6731 ** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
6746 ** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
6751 ** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
7002 ** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value
38988 ** If the journal header file appears to be corrupted, SQLITE_DONE is
39007 ** point, return SQLITE_DONE.
39011 return SQLITE_DONE;
39017 ** SQLITE_DONE. If an IO error occurs, return an error code. Otherwise,
39026 return SQLITE_DONE;
39074 return SQLITE_DONE;
39619 ** corrupted, SQLITE_DONE is returned. Data is considered corrupted in
39684 return SQLITE_DONE;
39693 return SQLITE_DONE;
40174 ** pager_playback_one_page() call returns SQLITE_DONE or an IO error
40185 if( rc==SQLITE_DONE ){
40241 if( rc==SQLITE_DONE ){
40766 assert( rc!=SQLITE_DONE );
40781 assert( rc!=SQLITE_DONE );
40796 assert( rc!=SQLITE_DONE );
40815 assert( rc!=SQLITE_DONE );
43757 assert(rc!=SQLITE_DONE);
51125 ** point in calling this function again), return SQLITE_DONE.
51133 ** it returns SQLITE_DONE or an error, and that nFin is the
51153 return SQLITE_DONE;
51246 ** SQLITE_DONE is returned. If it is not finished, but no error occurred,
51256 rc = SQLITE_DONE;
51318 if( (rc==SQLITE_DONE || rc==SQLITE_OK) && nFree>0 ){
52009 rc = SQLITE_DONE;
52015 assert( next==0 || rc==SQLITE_DONE );
52030 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
56847 rc = SQLITE_DONE;
56858 if( rc==SQLITE_DONE ){
56956 rc = SQLITE_DONE;
57019 rc = (p->rc==SQLITE_DONE) ? SQLITE_OK : p->rc;
57136 ** checks this assumption - (p->rc) should be set to either SQLITE_DONE
59470 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
59500 rc = SQLITE_DONE;
61892 ** sqlite3_step() after any error or after SQLITE_DONE. But beginning
61972 if( rc==SQLITE_DONE ){
61992 assert( rc==SQLITE_ROW || rc==SQLITE_DONE || rc==SQLITE_ERROR
61995 assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
61996 if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
64393 rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
66358 rc = SQLITE_DONE;
69193 if( rc==SQLITE_DONE ){
69906 assert( rc!=SQLITE_ROW && rc!=SQLITE_DONE );
79340 pParse->rc = SQLITE_DONE;
88799 (SQLITE_DONE==rc && !callbackIsInit
92100 if( pParse->rc==SQLITE_DONE ) pParse->rc = SQLITE_OK;
109718 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
113790 /* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
113874 ** "OUT" variables identified below, or SQLITE_DONE to indicate that
116618 if( rc==SQLITE_DONE ) rc = rc2;
117218 case SQLITE_DONE:
119792 ** The second pass, in the block that begins "if( rc==SQLITE_DONE )" below,
119830 if( rc==SQLITE_DONE ){
119916 return SQLITE_DONE;
119975 rc = SQLITE_DONE;
119985 return SQLITE_DONE;
120211 if( rc==SQLITE_DONE && pRet && isRequirePhrase ){
120215 if( rc==SQLITE_DONE ){
121507 return SQLITE_DONE;
122232 return SQLITE_DONE;
122388 ** (i.e. SQLITE_DONE).
122960 return (rc==SQLITE_DONE ? SQLITE_OK : rc);
123332 ** SQLITE_DONE. Otherwise, an SQLite error code.
124916 ** segment in the database, SQLITE_DONE is returned immediately.
124945 rc = SQLITE_DONE;
125002 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
125162 if( rc==SQLITE_DONE ){
125170 return (rc==SQLITE_OK && bReturnDone && bSeenDone) ? SQLITE_DONE : rc;
125278 if( rc==SQLITE_DONE ) rc = SQLITE_OK;
125515 if( rc==SQLITE_OK || rc==SQLITE_DONE ){
126108 if( rc!=SQLITE_OK && rc!=SQLITE_DONE ){ return rc; }
126110 nShift = (rc==SQLITE_DONE)+iCurrent-nSnippet;
126175 if( rc==SQLITE_DONE ){
126958 }else if( rc==SQLITE_DONE ){
126963 if( rc==SQLITE_DONE ){
126973 assert( rc!=SQLITE_DONE );
131006 return SQLITE_DONE;