Home
last modified time | relevance | path

Searched refs:sqlite3_trace (Results 1 – 13 of 13) sorted by relevance

/sqlite-3.40.0/src/
H A Dloadext.c96 # define sqlite3_trace 0 macro
244 sqlite3_trace,
H A Dsqlite3ext.h493 #define sqlite3_trace sqlite3_api->trace macro
H A Dtclsqlite.c3331 sqlite3_trace(pDb->db, DbTraceHandler, pDb); in DbObjCmd()
3333 sqlite3_trace(pDb->db, 0, 0); in DbObjCmd()
H A Dmain.c2137 void *sqlite3_trace(sqlite3 *db, void(*xTrace)(void*,const char*), void *pArg){ in sqlite3_trace() function
H A Dsqlite.h.in3227 ** ^The callback function registered by sqlite3_trace() is invoked at
3229 ** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the
3231 ** ^(Additional sqlite3_trace() callbacks might occur
3236 ** the length of [bound parameter] expansion in the output of sqlite3_trace().
3246 ** either [sqlite3_trace()] or [sqlite3_trace_v2()] will cancel the
3249 SQLITE_DEPRECATED void *sqlite3_trace(sqlite3*,
3281 ** the same text that would have been returned by the legacy [sqlite3_trace()]
3322 ** ^Each call to either sqlite3_trace() or sqlite3_trace_v2() overrides
3323 ** (cancels) any prior calls to sqlite3_trace() or sqlite3_trace_v2().
3337 ** interfaces [sqlite3_trace()] and [sqlite3_profile()], both of which
H A Dshell.c.in1147 FILE *traceOut; /* Output for sqlite3_trace() */
5401 ** A routine for handling output from sqlite3_trace().
/sqlite-3.40.0/test/
H A Dtrace2.test13 # This file implements tests for the "sqlite3_trace()" API. Specifically,
H A Dwordcount.c383 if( doTrace ) sqlite3_trace(db, traceCallback, 0); in main()
H A Dtrace.test13 # This file implements tests for the "sqlite3_trace()" API.
H A Dfkey1.test174 # Make sure sqlite3_trace() output works with triggers used to implement
H A Dspeedtest1.c2481 if( doTrace ) sqlite3_trace(g.db, traceCallback, 0); in main()
/sqlite-3.40.0/tool/
H A Dfuzzershell.c1102 sqlite3_trace(db, verboseFlag ? traceCallback : traceNoop, 0); in main()
/sqlite-3.40.0/mptest/
H A Dmptest.c1389 if( g.bSqlTrace ) sqlite3_trace(g.db, sqlTraceCallback, 0); in main()