HomeSort by: relevance | last modified time | path
    Searched defs:output_file (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/xlint/common/
emit.c 49 static FILE *output_file; variable in typeref:typename:FILE *
56 if ((output_file = fopen(name, "w")) == NULL)
64 if (fclose(output_file) == EOF)
72 fputc(c, output_file);
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
GCDAProfiling.c 79 static FILE *output_file = NULL; variable in typeref:typename:FILE *
220 fseek(output_file, 0L, SEEK_END);
221 file_size = ftell(output_file);
295 output_file = fdopen(fd, mode);
362 if (!output_file) return;
383 if (!output_file) return;
435 if (!output_file) return;
483 if (output_file) {
487 fwrite(write_buffer, cur_pos, 1, output_file);
493 fclose(output_file);
    [all...]

Completed in 12 milliseconds