Lines Matching full:iotrace
296 static FILE *iotrace = 0;
303 ** is written to iotrace.
309 if( iotrace==0 ) return;
313 fprintf(iotrace, "%s", z);
1611 ".iotrace FILE Enable I/O diagnostic logging to FILE\n"
2779 if( c=='i' && strncmp(azArg[0], "iotrace", n)==0 ){
2781 if( iotrace && iotrace!=stdout ) fclose(iotrace);
2782 iotrace = 0;
2787 iotrace = stdout;
2789 iotrace = fopen(azArg[1], "w");
2790 if( iotrace==0 ){