Searched refs:nErr (Results 1 - 12 of 12) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/test/
H A Dtester.tcl75 set nErr 0
84 global argv nErr nTest skip_test
106 incr nErr
108 if {$nErr>100} {puts "*** Giving up..."; finalize_testing}
111 incr nErr
113 if {$nErr>100} {puts "*** Giving up..."; finalize_testing}
145 incr nErr
177 global nTest nErr nProb sqlite_open_file_count
178 if {$nErr==0} memleak_check
180 puts "$nErr error
[all...]
/osnet-11/usr/src/lib/libsqlite/src/
H A Dtokenize.c400 int nErr = 0; local
439 nErr++;
457 if( zSql[i]==0 && nErr==0 && pParse->rc==SQLITE_OK ){
476 if( !nErr ) nErr++;
478 if( pParse->pVdbe && pParse->nErr>0 ){
490 if( nErr>0 && (pParse->rc==SQLITE_OK || pParse->rc==SQLITE_DONE) ){
493 return nErr;
H A Dattach.c115 if( pParse->nErr ) return;
127 pParse->nErr++;
H A Dbuild.c48 pParse->nErr++;
78 if( v && pParse->nErr==0 ){
82 pParse->rc = pParse->nErr ? SQLITE_ERROR : SQLITE_DONE;
482 pParse->nErr++;
890 if( (pEnd==0 && pSelect==0) || pParse->nErr || sqlite_malloc_failed ) return;
972 if( pParse->explain==0 && pParse->nErr==0 ){
1010 if( p==0 || pParse->nErr ){
1060 int nErr = 0; local
1112 nErr++;
1117 return nErr;
[all...]
H A Dmain.c61 int nErr = 0; local
122 nErr = 1;
123 assert( nErr==0 );
126 return nErr;
H A Dtrigger.c96 pParse->nErr++;
171 if( pParse->nErr || pParse->pNewTrigger==0 ) goto triggerfinish_cleanup;
H A Ddelete.c82 if( pParse->nErr || sqlite_malloc_failed ){
H A Dutil.c412 ** Add an error message to pParse->zErrMsg and increment pParse->nErr.
423 pParse->nErr++;
H A Dinsert.c122 if( pParse->nErr || sqlite_malloc_failed ) goto insert_cleanup;
188 if( rc || pParse->nErr || sqlite_malloc_failed ) goto insert_cleanup;
304 pParse->nErr++;
H A Dselect.c126 pParse->nErr++;
1095 int nErr = 0; local
1121 nErr++;
1152 nErr++;
1156 return nErr;
2033 if( sqlite_malloc_failed || pParse->nErr || p==0 ) return 1;
2059 if( pParse->nErr>0 ) goto select_end;
H A Dupdate.c67 if( pParse->nErr || sqlite_malloc_failed ) goto update_cleanup;
H A DsqliteInt.h927 int nErr; /* Number of errors seen */ member in struct:Parse

Completed in 58 milliseconds