Home | History | Annotate | Download | only in cachegrind

Lines Matching full:outfile

843    fprintf(stderr, "%s: usage: %s [-o outfile] [files-to-merge]\n", 
854 FILE* outfile = NULL;
926 outfile = fopen(outfilename, "w");
927 if (!outfile) {
934 outfile = stdout;
937 show_CacheProfFile( outfile, cpf );
938 if (ferror(outfile)) {
942 if (outfile != stdout)
943 fclose(outfile);
947 fflush(outfile);
948 if (outfile != stdout)
949 fclose( outfile );