Lines Matching defs:iotrace
540 static FILE *iotrace = 0;
547 ** is written to iotrace.
553 if( iotrace==0 ) return;
557 utf8_printf(iotrace, "%s", z);
18830 ".iotrace FILE Enable I/O diagnostic logging to FILE",
23180 if( c=='i' && cli_strncmp(azArg[0], "iotrace", n)==0 ){
23182 if( iotrace && iotrace!=stdout ) fclose(iotrace);
23183 iotrace = 0;
23188 iotrace = stdout;
23190 iotrace = fopen(azArg[1], "w");
23191 if( iotrace==0 ){