Home | History | Annotate | Download | only in cachegrind

Lines Matching full:outfile

841    fprintf(stderr, "%s: usage: %s [-o outfile] [files-to-merge]\n", 
852 FILE* outfile = NULL;
924 outfile = fopen(outfilename, "w");
925 if (!outfile) {
932 outfile = stdout;
935 show_CacheProfFile( outfile, cpf );
936 if (ferror(outfile)) {
940 if (outfile != stdout)
941 fclose(outfile);
945 fflush(outfile);
946 if (outfile != stdout)
947 fclose( outfile );