Lines Matching refs:iotrace
244 static FILE *iotrace = 0;
251 ** is written to iotrace.
257 if( iotrace==0 ) return;
261 fprintf(iotrace, "%s", z);
1326 ".iotrace FILE Enable I/O diagnostic logging to FILE\n"
1824 if( c=='i' && strncmp(azArg[0], "iotrace", n)==0 ){
1826 if( iotrace && iotrace!=stdout ) fclose(iotrace);
1827 iotrace = 0;
1832 iotrace = stdout;
1834 iotrace = fopen(azArg[1], "w");
1835 if( iotrace==0 ){