Lines Matching defs:sqlite3_log

2008 ** invoked by [sqlite3_log()] to process each logging event.  ^If the
2009 ** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op.
2014 ** [sqlite3_log()] call and is intended to be a [result code] or an
6958 ** ^The [sqlite3_log()] interface writes a message into the error log
6963 ** The sqlite3_log() interface is intended for use by extensions such as
6965 ** nothing to prevent an application from calling sqlite3_log(), doing so
6970 ** To avoid deadlocks and other threading problems, the sqlite3_log() routine
6976 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...);
11156 ** using sqlite3_log(). The routines also provide a convenient place
14864 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte);
14917 sqlite3_log(SQLITE_NOMEM,
16461 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte);
19843 ** This is the routine that actually formats the sqlite3_log() message.
19844 ** We house it in a separate routine from sqlite3_log() to avoid using
19847 ** sqlite3_log() must render into a static buffer. It cannot dynamically
19865 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){
21646 sqlite3_log(SQLITE_MISUSE,
25568 ** set. It logs a message using sqlite3_log() containing the current value of
25624 sqlite3_log(errcode,
31822 sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%d), heap=%p",
31843 sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%d), heap=%p",
31869 sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%d), heap=%p",
31893 sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%d), heap=%p",
31920 sqlite3_log(SQLITE_NOMEM,
31950 sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%d), heap=%p",
32184 ** It logs a message using sqlite3_log() containing the current value of
32210 sqlite3_log(errcode,
32259 sqlite3_log(SQLITE_IOERR,
35432 sqlite3_log(SQLITE_FULL,
45566 ** event via sqlite3_log(). This is to help with identifying performance
45571 sqlite3_log(SQLITE_OK, "Recovered %d frames from WAL file %s",
46940 sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName);
61585 sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement");
61593 sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement");
62541 sqlite3_log(SQLITE_MISUSE,
64381 sqlite3_log(pOp->p1, "abort at %d in [%s]: %s", pc, p->zSql, pOp->p4.z);
64384 sqlite3_log(pOp->p1, "constraint failed at %d in [%s]", pc, p->zSql);
69753 sqlite3_log(rc, "statement aborts at %d: [%s] %s",
84830 ** sqlite3_log(). The return value is NULL. The function exists purely for
84840 sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1]));
89301 #define sqlite3_log sqlite3_api->log
89660 sqlite3_log,
109724 sqlite3_log(pParse->rc, "%s", *pzErrMsg);
112627 ** 2. Invoke sqlite3_log() to provide the source code location where
112632 sqlite3_log(SQLITE_CORRUPT,
112639 sqlite3_log(SQLITE_MISUSE,
112646 sqlite3_log(SQLITE_CANTOPEN,