Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:sqlite3_log

1961 ** invoked by [sqlite3_log()] to process each logging event.  ^If the
1962 ** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op.
1967 ** [sqlite3_log()] call and is intended to be a [result code] or an
6742 ** ^The [sqlite3_log()] interface writes a message into the error log
6747 ** The sqlite3_log() interface is intended for use by extensions such as
6749 ** nothing to prevent an application from calling sqlite3_log(), doing so
6754 ** To avoid deadlocks and other threading problems, the sqlite3_log() routine
6760 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...);
10840 ** using sqlite3_log(). The routines also provide a convenient place
14474 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte);
14527 sqlite3_log(SQLITE_NOMEM,
16070 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte);
19450 ** This is the routine that actually formats the sqlite3_log() message.
19451 ** We house it in a separate routine from sqlite3_log() to avoid using
19454 ** sqlite3_log() must render into a static buffer. It cannot dynamically
19472 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){
21253 sqlite3_log(SQLITE_MISUSE,
25106 ** set. It logs a message using sqlite3_log() containing the current value of
25162 sqlite3_log(errcode,
44465 ** event via sqlite3_log(). This is to help with identifying performance
44470 sqlite3_log(SQLITE_OK, "Recovered %d frames from WAL file %s",
60375 sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement");
60383 sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement");
61323 sqlite3_log(SQLITE_MISUSE,
63170 sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pc, p->zSql, pOp->p4.z);
63173 sqlite3_log(pOp->p1, "constraint failed at %d in [%s]", pc, p->zSql);
68375 sqlite3_log(rc, "statement aborts at %d: [%s] %s",
86888 #define sqlite3_log sqlite3_api->log
87240 sqlite3_log,
106826 sqlite3_log(pParse->rc, "%s", *pzErrMsg);
109478 ** 2. Invoke sqlite3_log() to provide the source code location where
109483 sqlite3_log(SQLITE_CORRUPT,
109490 sqlite3_log(SQLITE_MISUSE,
109497 sqlite3_log(SQLITE_CANTOPEN,