Home | History | Annotate | Download | only in orig

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,
24853 sqlite3_log(SQLITE_WARNING,
25348 ** set. It logs a message using sqlite3_log() containing the current value of
25403 sqlite3_log(errcode,
25587 ** Issue sqlite3_log(SQLITE_WARNING,...) messages if anything is not right.
25599 sqlite3_log(SQLITE_WARNING, "cannot fstat db file %s", pFile->zPath);
25604 sqlite3_log(SQLITE_WARNING, "file unlinked while open: %s", pFile->zPath);
25609 sqlite3_log(SQLITE_WARNING, "multiple links to file: %s", pFile->zPath);
25614 sqlite3_log(SQLITE_WARNING, "file renamed while open: %s", pFile->zPath);
28967 ** If unsuccessful, an error message is logged via sqlite3_log() and
33154 sqlite3_log(SQLITE_NOMEM, "failed to HeapCompact (no space), heap=%p",
33158 sqlite3_log(SQLITE_ERROR, "failed to HeapCompact (%lu), heap=%p",
33164 sqlite3_log(SQLITE_NOTFOUND, "failed to HeapCompact, heap=%p",
33346 sqlite3_log(SQLITE_NOMEM, "failed to HeapAlloc %u bytes (%lu), heap=%p",
33367 sqlite3_log(SQLITE_NOMEM, "failed to HeapFree block %p (%lu), heap=%p",
33393 sqlite3_log(SQLITE_NOMEM, "failed to %s %u bytes (%lu), heap=%p",
33417 sqlite3_log(SQLITE_NOMEM, "failed to HeapSize block %p (%lu), heap=%p",
33453 sqlite3_log(SQLITE_NOMEM,
33465 sqlite3_log(SQLITE_NOMEM,
33497 sqlite3_log(SQLITE_NOMEM, "failed to HeapDestroy (%lu), heap=%p",
33800 ** It logs a message using sqlite3_log() containing the current value of
33826 sqlite3_log(errcode,
33911 sqlite3_log(SQLITE_IOERR,
36570 sqlite3_log(SQLITE_ERROR,
38211 sqlite3_log(SQLITE_FULL,
43097 sqlite3_log(SQLITE_NOTICE_RECOVER_ROLLBACK, "recovered %d pages from %s",
48685 ** event via sqlite3_log(). This is to help with identifying performance
48690 sqlite3_log(SQLITE_NOTICE_RECOVER_WAL,
49295 sqlite3_log(rx, "cannot limit WAL size: %s", pWal->zWalName);
64229 sqlite3_log(SQLITE_FULL, "MJ delete: %s", zMaster);
64233 sqlite3_log(SQLITE_FULL, "MJ collide: %s", zMaster);
66286 sqlite3_log(SQLITE_MISUSE, "API called with finalized prepared statement");
66294 sqlite3_log(SQLITE_MISUSE, "API called with NULL prepared statement");
67283 sqlite3_log(SQLITE_MISUSE,
68928 sqlite3_log(pOp->p1, zLogFmt, pc, p->zSql, p->zErrMsg);
74475 sqlite3_log(rc, "statement aborts at %d: [%s] %s",
77175 ** on sqlite3_log() whenever the capability is used.
92516 ** sqlite3_log(). The return value is NULL. The function exists purely for
92526 sqlite3_log(sqlite3_value_int(argv[0]), "%s", sqlite3_value_text(argv[1]));
97415 #define sqlite3_log sqlite3_api->log
97800 sqlite3_log,
112514 sqlite3_log(SQLITE_WARNING_AUTOINDEX,
121742 sqlite3_log(pParse->rc, "%s", *pzErrMsg);
125019 ** 2. Invoke sqlite3_log() to provide the source code location where
125024 sqlite3_log(SQLITE_CORRUPT,
125031 sqlite3_log(SQLITE_MISUSE,
125038 sqlite3_log(SQLITE_CANTOPEN,
136777 ** If FTS_LOG_MERGES is defined, call sqlite3_log() to report each automatic
136784 sqlite3_log(SQLITE_OK, "%d-way merge from level %d", nMerge, (int)iAbsLevel);