Searched defs:nErr (Results 1 - 6 of 6) sorted by relevance

/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 Dexpr.c827 int nErr = 0; local
856 nErr++;
860 nErr++;
864 nErr++;
870 for(i=0; nErr==0 && i<n; i++){
871 nErr = sqliteExprCheck(pParse, pExpr->pList->a[i].pExpr,
899 nErr = sqliteExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg);
901 if( nErr==0 && pExpr->pRight ){
902 nErr = sqliteExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg);
904 if( nErr
1556 int nErr = 0; local
[all...]
H A Dmain.c61 int nErr = 0; local
122 nErr = 1;
123 assert( nErr==0 );
126 return 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 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 DsqliteInt.h927 int nErr; /* Number of errors seen */ member in struct:Parse

Completed in 39 milliseconds