Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_log

541 #define SQLITE_NOTICE      27   /* Notifications from sqlite3_log() */
542 #define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */
1758 ** invoked by [sqlite3_log()] to process each logging event. ^If the
1759 ** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op.
1764 ** [sqlite3_log()] call and is intended to be a [result code] or an
7187 ** ^The [sqlite3_log()] interface writes a message into the [error log]
7192 ** The sqlite3_log() interface is intended for use by extensions such as
7194 ** nothing to prevent an application from calling sqlite3_log(), doing so
7199 ** To avoid deadlocks and other threading problems, the sqlite3_log() routine
7205 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...);
12313 ** using sqlite3_log(). The routines also provide a convenient place
16406 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte);
16419 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes of memory", nByte);
16475 sqlite3_log(SQLITE_NOMEM,
16491 sqlite3_log(SQLITE_NOMEM,
18045 sqlite3_log(SQLITE_NOMEM, "failed to allocate %u bytes", nByte);
21517 ** This is the routine that actually formats the sqlite3_log() message.
21518 ** We house it in a separate routine from sqlite3_log() to avoid using
21521 ** sqlite3_log() must render into a static buffer. It cannot dynamically
21539 SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...){
23368 sqlite3_log(SQLITE_MISUSE,
24871 sqlite3_log(SQLITE_WARNING,
25366 ** set. It logs a message using sqlite3_log() containing the current value of
25421 sqlite3_log(errcode,
25605 ** Issue sqlite3_log(SQLITE_WARNING,...) messages if anything is not right.
25617 sqlite3_log(SQLITE_WARNING, "cannot fstat db file %s", pFile->zPath);
25622 sqlite3_log(SQLITE_WARNING, "file unlinked while open: %s", pFile->zPath);
25627 sqlite3_log(SQLITE_WARNING, "multiple links to file: %s", pFile->zPath);
25632 sqlite3_log(SQLITE_WARNING, "file renamed while open: %s", pFile->zPath);
28987 ** If unsuccessful, an error message is logged via sqlite3_log() and
33174 sqlite3_log(SQLITE_NOMEM, "failed to HeapCompact (no space), heap=%p",
33178 sqlite3_log(SQLITE_ERROR, "failed to HeapCompact (%lu), heap=%p",
33184 sqlite3_log(SQLITE_NOTFOUND, "failed to HeapCompact, heap=%p",
33366 sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%lu), heap=%p",
33387 sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%lu), heap=%p",
33413 sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%lu), heap=%p",
33437 sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%lu), heap=%p",
33473 sqlite3_log(SQLITE_NOMEM,
33485 sqlite3_log(SQLITE_NOMEM,
33517 sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%lu), heap=%p",
33820 ** It logs a message using sqlite3_log() containing the current value of
33846 sqlite3_log(errcode,
33931 sqlite3_log(SQLITE_IOERR,
36590 sqlite3_log(SQLITE_ERROR,
38231 sqlite3_log(SQLITE_FULL,
43117 sqlite3_log(SQLITE_NOTICE_RECOVER_ROLLBACK, "recovered %d pages from %s",
48705 ** event via sqlite3_log(). This is to help with identifying performance
48710 sqlite3_log(SQLITE_NOTICE_RECOVER_WAL,
49315 sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName);
64249 sqlite3_log(SQLITE_FULL, "MJ delete: %s", zMaster);
64253 sqlite3_log(SQLITE_FULL, "MJ collide: %s", zMaster);
66306 sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement");
66314 sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement");
67303 sqlite3_log(SQLITE_MISUSE,
68948 sqlite3_log(pOp->p1, zLogFmt, pc, p->zSql, p->zErrMsg);
74495 sqlite3_log(rc, "statement aborts at %d: [%s] %s",
77195 ** on sqlite3_log() whenever the capability is used.
92536 ** sqlite3_log(). The return value is NULL. The function exists purely for
92546 sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1]));
97435 #define sqlite3_log sqlite3_api->log
97820 sqlite3_log,
112534 sqlite3_log(SQLITE_WARNING_AUTOINDEX,
121762 sqlite3_log(pParse->rc, "%s", *pzErrMsg);
125039 ** 2. Invoke sqlite3_log() to provide the source code location where
125044 sqlite3_log(SQLITE_CORRUPT,
125051 sqlite3_log(SQLITE_MISUSE,
125058 sqlite3_log(SQLITE_CANTOPEN,
136809 ** If FTS_LOG_MERGES is defined, call sqlite3_log() to report each automatic
136816 sqlite3_log(SQLITE_OK, "%d-way merge from level %d", nMerge, (int)iAbsLevel);