Searched refs:iErrCode (Results 1 – 6 of 6) sorted by relevance
| /sqlite-3.40.0/mptest/ |
| H A D | mptest.c | 342 static void sqlErrorCallback(void *pArg, int iErrCode, const char *zMsg){ in sqlErrorCallback() argument 344 if( iErrCode==SQLITE_ERROR && g.bIgnoreSqlErrors ) return; in sqlErrorCallback() 345 if( (iErrCode&0xff)==SQLITE_SCHEMA && g.iTrace<3 ) return; in sqlErrorCallback() 346 if( g.iTimeout==0 && (iErrCode&0xff)==SQLITE_BUSY && g.iTrace<3 ) return; in sqlErrorCallback() 347 if( (iErrCode&0xff)==SQLITE_NOTICE ){ in sqlErrorCallback() 350 errorMessage("(errcode=%d) %s", iErrCode, zMsg); in sqlErrorCallback()
|
| /sqlite-3.40.0/src/ |
| H A D | printf.c | 1330 static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){ in renderLogMsg() argument 1336 sqlite3GlobalConfig.xLog(sqlite3GlobalConfig.pLogArg, iErrCode, in renderLogMsg() 1343 void sqlite3_log(int iErrCode, const char *zFormat, ...){ in sqlite3_log() argument 1347 renderLogMsg(iErrCode, zFormat, ap); in sqlite3_log()
|
| H A D | shell.c.in | 1325 static void shellLog(void *pArg, int iErrCode, const char *zMsg){ argument 1328 utf8_printf(p->pLog, "(%d) %s\n", iErrCode, zMsg);
|
| H A D | sqlite.h.in | 9254 void sqlite3_log(int iErrCode, const char *zFormat, ...);
|
| /sqlite-3.40.0/tool/ |
| H A D | fuzzershell.c | 183 static void shellLog(void *pNotUsed, int iErrCode, const char *zMsg){ in shellLog() argument 184 printf("LOG: (%d) %s\n", iErrCode, zMsg); in shellLog() 187 static void shellLogNoop(void *pNotUsed, int iErrCode, const char *zMsg){ in shellLogNoop() argument
|
| /sqlite-3.40.0/test/ |
| H A D | dbfuzz.c | 548 static void sqlLog(void *pNotUsed, int iErrCode, const char *zMsg){ in sqlLog() argument 549 printf("LOG: (%d) %s\n", iErrCode, zMsg); in sqlLog()
|