| /src/lib/libpmc/pmu-events/ |
| H A D | jevents.c | 338 FILE *outfp; member 353 FILE *outfp = pd->outfp; in print_events_table_entry() local 360 fprintf(outfp, "{\n"); in print_events_table_entry() 363 fprintf(outfp, "\t.name = \"%s\",\n", je->name); in print_events_table_entry() 365 fprintf(outfp, "\t.event = \"%s\",\n", je->event); in print_events_table_entry() 366 fprintf(outfp, "\t.desc = \"%s\",\n", je->desc); in print_events_table_entry() 368 fprintf(outfp, "\t.compat = \"%s\",\n", je->compat); in print_events_table_entry() 369 fprintf(outfp, "\t.topic = \"%s\",\n", topic_local); in print_events_table_entry() 371 fprintf(outfp, "\t.long_desc = \"%s\",\n", je->long_desc); in print_events_table_entry() 373 fprintf(outfp, "\t.pmu = \"%s\",\n", je->pmu); in print_events_table_entry() [all …]
|
| /src/usr.bin/bintrans/ |
| H A D | uudecode.c | 61 static FILE *infp, *outfp; variable 165 outfp = stdout; in decode() 266 outfp = stdout; in decode2() 299 (outfp = fdopen(fd, "w")) == NULL) { in decode2() 340 if (fflush(outfp) != 0) { in checkout() 344 if (outfp != stdout) { in checkout() 345 (void)fclose(outfp); in checkout() 346 outfp = stdout; in checkout() 391 putc(ch, outfp); in uu_decode() 393 putc(ch, outfp); in uu_decode() [all …]
|
| /src/usr.sbin/autofs/ |
| H A D | popen.c | 60 FILE *outfp; member 125 close(fileno(p->outfp)); in auto_popen() 134 cur->outfp = fdopen(outfds[0], "r"); in auto_popen() 142 return (cur->outfp); in auto_popen() 156 if (cur->outfp == iop) in auto_pclose() 168 fclose(cur->outfp); in auto_pclose()
|
| /src/contrib/openbsm/libbsm/ |
| H A D | bsm_io.c | 889 au_print_xml_header(FILE *outfp) in au_print_xml_header() argument 892 fprintf(outfp, "<?xml version='1.0' ?>\n"); in au_print_xml_header() 893 fprintf(outfp, "<audit>\n"); in au_print_xml_header() 900 au_print_xml_footer(FILE *outfp) in au_print_xml_footer() argument 903 fprintf(outfp, "</audit>\n"); in au_print_xml_footer() 4282 au_print_flags_tok(FILE *outfp, tokenstr_t *tok, char *del, int oflags) in au_print_flags_tok() argument 4287 print_header32_tok(outfp, tok, del, oflags); in au_print_flags_tok() 4291 print_header32_ex_tok(outfp, tok, del, oflags); in au_print_flags_tok() 4295 print_header64_tok(outfp, tok, del, oflags); in au_print_flags_tok() 4299 print_header64_ex_tok(outfp, tok, del, oflags); in au_print_flags_tok() [all …]
|
| /src/usr.sbin/uefisign/ |
| H A D | child.c | 228 FILE *outfp = NULL, *infp = NULL; in child() local 233 outfp = checked_fopen(outpath, "w"); in child() 266 save(x, outfp, outpath); in child()
|
| /src/usr.bin/sdiff/ |
| H A D | sdiff.c | 76 FILE *outfp; /* file to save changes to */ variable 328 if (outfile && (outfp = fopen(outfile, "w")) == NULL) in main() 589 fprintf(outfp, "%s\n", s1); in prompt() 598 fprintf(outfp, "%s\n", s2); in prompt() 626 fclose(outfp); in prompt() 1028 if (outfp) in processq() 1031 fprintf(outfp, "%s\n", left); in processq()
|
| H A D | extern.h | 8 extern FILE *outfp; /* file to save changes to */
|
| H A D | edit.c | 193 nwritten = fwrite(buf, sizeof(*buf), nread, outfp); in eparse()
|
| /src/contrib/openbsm/bsm/ |
| H A D | libbsm.h | 862 void au_print_tok(FILE *outfp, tokenstr_t *tok, 864 void au_print_flags_tok(FILE *outfp, tokenstr_t *tok, 866 void au_print_tok_xml(FILE *outfp, tokenstr_t *tok, 872 void au_print_xml_header(FILE *outfp); 873 void au_print_xml_footer(FILE *outfp);
|
| /src/sys/kern/ |
| H A D | vfs_syscalls.c | 5070 struct file *infp, *infp1, *outfp, *outfp1; in kern_copy_file_range() local 5078 infp = outfp = NULL; in kern_copy_file_range() 5111 outoffp != NULL ? &cap_pwrite_rights : &cap_write_rights, &outfp); in kern_copy_file_range() 5114 if (outfp->f_ops == &badfileops) { in kern_copy_file_range() 5118 if (outfp->f_vnode == NULL) { in kern_copy_file_range() 5136 outfp1 = outfp; in kern_copy_file_range() 5156 outvp = outfp->f_vnode; in kern_copy_file_range() 5158 if ((outfp->f_flag & (FWRITE | FAPPEND)) != FWRITE || in kern_copy_file_range() 5203 flags, infp->f_cred, outfp->f_cred, td); in kern_copy_file_range() 5220 foffset_unlock(outfp, outoff, 0); in kern_copy_file_range() [all …]
|