HomeSort by: relevance | last modified time | path
    Searched refs:outfp (Results 1 - 14 of 14) sorted by relevancy

  /src/external/gpl2/groff/dist/src/devices/grops/
psrm.cpp 38 static void print_ps_string(const string &s, FILE *outfp);
138 void print_type_and_name(FILE *outfp);
158 void resource::print_type_and_name(FILE *outfp)
160 fputs(resource_table[type], outfp);
161 putc(' ', outfp);
162 print_ps_string(name, outfp);
164 putc(' ', outfp);
165 print_ps_string(version, outfp);
166 fprintf(outfp, " %u", revision);
276 void resource_manager::print_resources_comment(unsigned flag, FILE *outfp)
308 FILE *outfp = out.get_file(); local
    [all...]
ps.h 91 void supply_resource(resource *r, int rank, FILE *outfp,
93 void process_file(int rank, FILE *fp, const char *filename, FILE *outfp);
98 void print_resources_comment(unsigned flag, FILE *outfp);
99 void print_extensions_comment(FILE *outfp);
100 void print_language_level_comment(FILE *outfp);
101 int do_begin_resource(const char *ptr, int rank, FILE *fp, FILE *outfp);
102 int do_include_resource(const char *ptr, int rank, FILE *fp, FILE *outfp);
103 int do_begin_document(const char *ptr, int rank, FILE *fp, FILE *outfp);
104 int do_include_document(const char *ptr, int rank, FILE *fp, FILE *outfp);
105 int do_begin_procset(const char *ptr, int rank, FILE *fp, FILE *outfp);
    [all...]
  /src/usr.sbin/autofs/
popen.c 66 FILE *outfp; member in struct:pid
131 close(fileno(p->outfp));
140 cur->outfp = fdopen(outfds[0], "r");
148 return cur->outfp;
162 if (cur->outfp == iop)
174 fclose(cur->outfp);
  /src/usr.bin/sort/
fsort.c 82 fsort(struct filelist *filelist, int nfiles, FILE *outfp, struct field *ftbl)
177 append(keylist, nelem, outfp,
192 merge_sort(outfp,
msort.c 136 fmerge(struct filelist *filelist, int nfiles, FILE *outfp, struct field *ftbl)
149 merge_sort(outfp, putline, ftbl);
153 merge_sort(FILE *outfp, put_func_t put, struct field *ftbl)
161 merge_sort_fstack(outfp, put, ftbl);
182 merge_sort_fstack(outfp, put, ftbl);
196 merge_sort_fstack(FILE *outfp, put_func_t put, struct field *ftbl)
255 put(cfile->rec, outfp);
294 put(new_rec, outfp);
sort.c 126 FILE *outfp = NULL; local
321 outfp = stdout;
343 if ((outfp = fdopen(outfd, "w")) == NULL)
348 if ((outfp = fopen(outfile, "w")) == NULL)
353 fmerge(&filelist, num_input_files, outfp, fldtab);
355 fsort(&filelist, num_input_files, outfp, fldtab);
  /src/external/gpl2/groff/dist/src/preproc/refer/
refer.cpp 40 static FILE *outfp = stdout; variable
118 outfp = stdout;
439 fprintf(outfp, ".lf 1 %s\n", filename);
510 if (accumulate && outfp == stdout)
635 label_processing_state state(citation, ncitations, outfp);
641 put_string(pending_line, outfp);
644 put_string(pending_lf_lines, outfp);
650 fprintf(outfp, ".lf %d %s\n", current_lineno, current_filename);
682 outfp = xtmpfile();
781 fputs(".ds [F ", outfp);
    [all...]
  /src/usr.sbin/lockstat/
main.c 152 static FILE *outfp; variable
262 outfp = fdopen(fd, "w");
264 outfp = stdout;
377 fprintf(outfp, "Elapsed time: %.2f seconds.", ms / MILLI);
379 fprintf(outfp, " Displaying ");
381 fprintf(outfp, "per-CPU ");
383 fprintf(outfp, "per-second ");
384 fprintf(outfp, "averages.");
386 putc('\n', outfp);
399 fprintf(outfp, "None of the selected events were recorded.\n")
    [all...]
  /src/sys/dev/microcode/siop/
ncr53cxxx.c 298 FILE *outfp; variable
405 outfp = fopen (outputfile, "w");
413 if (outfp) {
416 fprintf(outfp, "/*\t$NetBSD: ncr53cxxx.c,v 1.17 2022/04/21 21:31:11 andvar Exp $\t*/\n");
417 fprintf(outfp, "/*\n");
418 fprintf(outfp, " *\tDO NOT EDIT - this file is automatically generated.\n");
420 fprintf(outfp, " *\tcreated from %s on %s", sourcefile, ctime(&cur_time));
421 fprintf(outfp, " */\n");
455 if (outfp && !partial_flag) {
456 fprintf (outfp, "\nu_int32_t INSTRUCTIONS = 0x%08x;\n", ninsts)
    [all...]
  /src/external/gpl2/groff/dist/src/utils/addftinfo/
addftinfo.cpp 164 static void convert_font(const font_params &param, FILE *infp, FILE *outfp)
168 put_string(s, outfp);
184 putc(*q, outfp);
217 fputs(p, outfp);
  /src/external/bsd/openpam/dist/lib/libpam/
openpam_ttyconv.c 350 FILE *infp, *outfp, *errfp; local
364 if ((outfp = infp = errfp = fopen(_PATH_TTY, "w+")) == NULL) {
366 outfp = stderr;
391 fputs(msg[i]->msg, outfp);
394 fputc('\n', outfp);
  /src/sys/arch/sgimips/stand/undist/
undist.c 820 fcopy(FILE *infp, FILE *outfp, int extractbytes, int *cksum)
835 if (outfp != NULL) {
836 if (fwrite(buf, extract, 1, outfp) != 1)
858 FILE *infp, *outfp; local
878 outfp = NULL;
887 outfp = fdopen(outfd, "w");
888 if (outfp == NULL) {
900 success = fcopy(infp, outfp, ent->size, &nsum);
902 success = (decompress(infp, outfp,
933 if (outfp != NULL
    [all...]
  /src/external/mpl/bind/dist/tests/dns/
skr_test.c 412 FILE *outfp = NULL; local
419 ret = isc_file_openunique(tempfile, &outfp);
424 create_bundle(outfp, start_time, i);
428 fprintf(outfp, ";; SignedKeyResponse 1.0 generated by test-dev\n");
430 ret = isc_stdio_close(outfp);
  /src/external/mpl/bind/dist/bin/dnssec/
dnssec-signzone.c 139 static FILE *outfp = NULL; variable
255 result = isc_stdio_write(r.base, 1, r.length, outfp, NULL);
4135 outfp = stdout;
4146 result = isc_file_openunique(tempfile, &outfp);
4151 INSIST(outfp != NULL);
4156 print_time(outfp);
4157 print_version(outfp);
4204 &header, outfp);
4209 result = isc_stdio_close(outfp);

Completed in 79 milliseconds