Home | History | Annotate | Download | only in dist

Lines Matching refs:iotrace

464 static FILE *iotrace = 0;
471 ** is written to iotrace.
477 if( iotrace==0 ) return;
481 utf8_printf(iotrace, "%s", z);
10147 ".iotrace FILE Enable I/O diagnostic logging to FILE\n"
13034 if( c=='i' && strncmp(azArg[0], "iotrace", n)==0 ){
13036 if( iotrace && iotrace!=stdout ) fclose(iotrace);
13037 iotrace = 0;
13042 iotrace = stdout;
13044 iotrace = fopen(azArg[1], "w");
13045 if( iotrace==0 ){