Home | History | Annotate | Download | only in dist

Lines Matching refs:iotrace

23968 static FILE *iotrace = 0;
24202 ** is written to iotrace.
24208 if( iotrace==0 ) return;
24212 cli_printf(iotrace, "%s", z);
27081 ",iotrace FILE Enable I/O diagnostic logging to FILE",
33442 if( c=='i' && cli_strncmp(azArg[0], "iotrace", n)==0 ){
33444 if( iotrace && iotrace!=stdout ) fclose(iotrace);
33445 iotrace = 0;
33450 iotrace = stdout;
33452 iotrace = sqlite3_fopen(azArg[1], "w");
33453 if( iotrace==0 ){