Lines Matching defs:sqlite3_log

999 #define SQLITE_NOTICE      27   /* Notifications from sqlite3_log() */
1000 #define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */
2171 ** invoked by [sqlite3_log()] to process each logging event. ^If the
2172 ** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op.
2177 ** [sqlite3_log()] call and is intended to be a [result code] or an
7460 ** ^The [sqlite3_log()] interface writes a message into the [error log]
7465 ** The sqlite3_log() interface is intended for use by extensions such as
7467 ** nothing to prevent an application from calling sqlite3_log(), doing so
7472 ** To avoid deadlocks and other threading problems, the sqlite3_log() routine
7478 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...);
11790 ** using sqlite3_log(). The routines also provide a convenient place
15737 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte);
15750 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte);
15806 sqlite3_log(SQLITE_NOMEM,
15822 sqlite3_log(SQLITE_NOMEM,
17395 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte);
20461 ** This is the routine that actually formats the sqlite3_log() message.
20462 ** We house it in a separate routine from sqlite3_log() to avoid using
20465 ** sqlite3_log() must render into a static buffer. It cannot dynamically
20483 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){
22290 sqlite3_log(SQLITE_MISUSE,
24177 ** set. It logs a message using sqlite3_log() containing the current value of
24232 sqlite3_log(errcode,
24403 ** Issue sqlite3_log(SQLITE_WARNING,...) messages if anything is not right.
24415 sqlite3_log(SQLITE_WARNING, "cannot fstat db file %s", pFile->zPath);
24420 sqlite3_log(SQLITE_WARNING, "file unlinked while open: %s", pFile->zPath);
24425 sqlite3_log(SQLITE_WARNING, "multiple links to file: %s", pFile->zPath);
24433 sqlite3_log(SQLITE_WARNING, "file renamed while open: %s", pFile->zPath);
27732 ** If unsuccessful, an error message is logged via sqlite3_log() and
31815 sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%d), heap=%p",
31836 sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%d), heap=%p",
31862 sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%d), heap=%p",
31886 sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%d), heap=%p",
31915 sqlite3_log(SQLITE_NOMEM,
31927 sqlite3_log(SQLITE_NOMEM,
31956 sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%d), heap=%p",
32259 ** It logs a message using sqlite3_log() containing the current value of
32285 sqlite3_log(errcode,
32339 sqlite3_log(SQLITE_IOERR,
34778 sqlite3_log(SQLITE_ERROR,
36308 sqlite3_log(SQLITE_FULL,
41167 sqlite3_log(SQLITE_NOTICE_RECOVER_ROLLBACK, "recovered %d pages from %s",
46701 ** event via sqlite3_log(). This is to help with identifying performance
46706 sqlite3_log(SQLITE_NOTICE_RECOVER_WAL,
47311 sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName);
61784 sqlite3_log(SQLITE_FULL, "MJ delete: %s", zMaster);
61788 sqlite3_log(SQLITE_FULL, "MJ collide: %s", zMaster);
63241 sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement");
63249 sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement");
64185 sqlite3_log(SQLITE_MISUSE,
66177 sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pc, p->zSql, pOp->p4.z);
66180 sqlite3_log(pOp->p1, "constraint failed at %d in [%s]", pc, p->zSql);
71648 sqlite3_log(rc, "statement aborts at %d: [%s] %s",
87975 ** sqlite3_log(). The return value is NULL. The function exists purely for
87985 sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1]));
92621 #define sqlite3_log sqlite3_api->log
93003 sqlite3_log,
114361 sqlite3_log(pParse->rc, "%s", *pzErrMsg);
117590 ** 2. Invoke sqlite3_log() to provide the source code location where
117595 sqlite3_log(SQLITE_CORRUPT,
117602 sqlite3_log(SQLITE_MISUSE,
117609 sqlite3_log(SQLITE_CANTOPEN,
128709 ** If FTS_LOG_MERGES is defined, call sqlite3_log() to report each automatic
128716 sqlite3_log(SQLITE_OK, "%d-way merge from level %d", nMerge, (int)iAbsLevel);