Home | History | Annotate | Download | only in orig

Lines Matching defs:TRACE

9749   void (*xTrace)(void*,const char*);        /* Trace function */
9750 void *pTraceArg; /* Argument to the trace function */
9829 #define SQLITE_VdbeTrace 0x00000100 /* True to trace VDBE execution */
13166 FILE *trace; /* Write an execution trace here, if not NULL */
17657 int trace; /* True to trace changes */
17828 printf("%s mutex %p (%d) with nRef=%ld\n", pAction, (void*)p, p->trace, ulCount);
17847 if( p->trace ) os2MutexTrace(p, "enter");
17856 if( p->trace ) os2MutexTrace(p, "try");
17872 if( p->trace ) os2MutexTrace(p, "leave");
17945 int trace; /* True to trace changes */
18143 if( p->trace ){
18144 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
18192 if( rc==SQLITE_OK && p->trace ){
18193 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
18222 if( p->trace ){
18223 printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
18282 int trace; /* True to trace changes */
18501 if( p->trace ){
18502 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
18533 if( rc==SQLITE_OK && p->trace ){
18534 printf("try mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
18557 if( p->trace ){
18558 printf("leave mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef);
22665 /* 148 */ "Trace",
25591 ** Helper function for printing out trace information from debugging
45580 ** Trace output macros
49389 ** Set this global variable to 1 to enable tracing using the TRACE
49394 # define TRACE(X) if(sqlite3BtreeTrace){printf X;fflush(stdout);}
49396 # define TRACE(X)
50160 TRACE(("PTRMAP_UPDATE: %d->(%d,%d)\n", key, eType, parent));
52182 TRACE(("AUTOVACUUM: Moving %d to free page %d (ptr page %d type %d)\n",
54282 TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1));
54346 TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1));
54379 TRACE(("ALLOCATE: %d was leaf %d of %d on trunk %d"
54417 TRACE(("ALLOCATE: %d from end of file (pointer-map page)\n", pBt->nPage));
54439 TRACE(("ALLOCATE: %d from end of file\n", *pPgno));
54563 TRACE(("FREE-PAGE: %d leaf on trunk page %d\n",pPage->pgno,pTrunk->pgno));
54584 TRACE(("FREE-PAGE: %d new trunk page replacing %d\n", pPage->pgno, iTrunk));
55322 TRACE(("BALANCE: begin page %d child of %d\n", pPage->pgno, pParent->pgno));
55594 TRACE(("BALANCE: old: %d %d %d ",
55673 TRACE(("new: %d(%d) %d(%d) %d(%d) %d(%d) %d(%d)\n",
55891 TRACE(("BALANCE: finished: old=%d new=%d cells=%d\n",
55959 TRACE(("BALANCE: copy root %d into %d\n", pRoot->pgno, pChild->pgno));
56186 TRACE(("INSERT: table=%d nkey=%lld ndata=%d page=%d %s\n",
59607 SQLITE_PRIVATE void sqlite3VdbeTrace(Vdbe *p, FILE *trace){
59608 p->trace = trace;
64786 # define REGISTER_TRACE(R,M) if(p->trace)registerTrace(p->trace,R,M)
65461 if( p->trace ){
65463 printf("VDBE Execution Trace:\n");
65466 sqlite3VdbePrintOp(p->trace, pc, pOp);
71026 /* Opcode: Trace * * * P4 *
71029 ** the UTF-8 string contained in P4 is emitted on the trace callback.
71046 sqlite3DebugPrintf("SQL-trace: %s\n", u.cr.zTrace);
71099 if( p->trace ){
71100 if( rc!=0 ) fprintf(p->trace,"rc=%d\n",rc);
71102 registerTrace(p->trace, pOp->p2, &aMem[pOp->p2]);
71105 registerTrace(p->trace, pOp->p3, &aMem[pOp->p3]);
81392 FILE *trace = (db->flags & SQLITE_VdbeTrace)!=0 ? stdout : 0;
81393 sqlite3VdbeTrace(v, trace);
91118 void * (*trace)(sqlite3*,void(*xTrace)(void*,const char*),void*);
91333 #define sqlite3_trace sqlite3_api->trace
102555 ** Trace output macros
108682 ** Turn parser tracing on by giving a stream to which to write the trace
108683 ** and a prompt to preface each trace message. Tracing is turned off
108688 ** <li> A FILE* to which trace output should be written.
108691 ** line of trace output. If NULL, then tracing is
113712 ** Register a trace function. The pArg from the previously registered trace
113715 ** A NULL trace function means that no tracing is executes. A non-NULL
113716 ** trace is a pointer to a function that is invoked at the start of each