Lines Matching refs:gcov_file
716 FILE *gcov_file = fopen (gcov_file_name, "w"); in generate_results() local
718 if (gcov_file) in generate_results()
721 output_lines (gcov_file, src); in generate_results()
722 if (ferror (gcov_file)) in generate_results()
725 fclose (gcov_file); in generate_results()
2161 output_branch_count (FILE *gcov_file, int ix, const arc_t *arc) in output_branch_count() argument
2167 fnotice (gcov_file, "call %2d returned %s\n", ix, in output_branch_count()
2172 fnotice (gcov_file, "call %2d never executed\n", ix); in output_branch_count()
2177 fnotice (gcov_file, "branch %2d taken %s%s\n", ix, in output_branch_count()
2182 fnotice (gcov_file, "branch %2d never executed\n", ix); in output_branch_count()
2187 fnotice (gcov_file, "unconditional %2d taken %s\n", ix, in output_branch_count()
2190 fnotice (gcov_file, "unconditional %2d never executed\n", ix); in output_branch_count()
2241 output_lines (FILE *gcov_file, const source_t *src) in output_lines() argument
2249 fprintf (gcov_file, "%9s:%5d:Source:%s\n", "-", 0, src->coverage.name); in output_lines()
2252 fprintf (gcov_file, "%9s:%5d:Graph:%s\n", "-", 0, bbg_file_name); in output_lines()
2253 fprintf (gcov_file, "%9s:%5d:Data:%s\n", "-", 0, in output_lines()
2255 fprintf (gcov_file, "%9s:%5d:Runs:%u\n", "-", 0, object_runs); in output_lines()
2257 fprintf (gcov_file, "%9s:%5d:Programs:%u\n", "-", 0, program_count); in output_lines()
2266 fprintf (gcov_file, "%9s:%5d:Source is newer than graph\n", "-", 0); in output_lines()
2283 fprintf (gcov_file, "function %s", fn->name); in output_lines()
2284 fprintf (gcov_file, " called %s", in output_lines()
2286 fprintf (gcov_file, " returned %s", in output_lines()
2288 fprintf (gcov_file, " blocks executed %s", in output_lines()
2290 fprintf (gcov_file, "\n"); in output_lines()
2302 fprintf (gcov_file, "%9s:%5u:%s\n", in output_lines()
2318 fprintf (gcov_file, "%9s:%5u-block %2d\n", in output_lines()
2325 jx += output_branch_count (gcov_file, jx, arc); in output_lines()
2334 ix += output_branch_count (gcov_file, ix, arc); in output_lines()
2343 fprintf (gcov_file, "%9s:%5u:%s\n", "-", line_num, retval); in output_lines()