/freebsd/lib/libpmc/pmu-events/ |
H A D | jevents.c | 332 FILE *outfp; member 347 FILE *outfp = pd->outfp; in print_events_table_entry() local 354 fprintf(outfp, "{\n"); in print_events_table_entry() 357 fprintf(outfp, "\t.name = \"%s\",\n", je->name); in print_events_table_entry() 359 fprintf(outfp, "\t.event = \"%s\",\n", je->event); in print_events_table_entry() 360 fprintf(outfp, "\t.desc = \"%s\",\n", je->desc); in print_events_table_entry() 362 fprintf(outfp, "\t.compat = \"%s\",\n", je->compat); in print_events_table_entry() 363 fprintf(outfp, "\t.topic = \"%s\",\n", topic_local); in print_events_table_entry() 365 fprintf(outfp, "\ in print_events_table_entry() 466 print_events_table_suffix(FILE * outfp) print_events_table_suffix() argument 824 print_mapping_table_prefix(FILE * outfp) print_mapping_table_prefix() argument 829 print_mapping_table_suffix(FILE * outfp) print_mapping_table_suffix() argument 845 print_mapping_test_table(FILE * outfp) print_mapping_test_table() argument 858 print_system_event_mapping_table_prefix(FILE * outfp) print_system_event_mapping_table_prefix() argument 863 print_system_event_mapping_table_suffix(FILE * outfp) print_system_event_mapping_table_suffix() argument 869 process_system_event_tables(FILE * outfp) process_system_event_tables() argument 886 process_mapfile(FILE * outfp,char * fpath) process_mapfile() argument 977 FILE *outfp; create_empty_mapping() local [all...] |
/freebsd/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 …]
|
/freebsd/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()
|
/freebsd/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 …]
|
/freebsd/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()
|
/freebsd/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() 1027 /* Write to outfp, prompting user if lines are different. */ in processq() 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()
|
/freebsd/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);
|
/freebsd/sys/kern/ |
H A D | vfs_syscalls.c | 4943 struct file *infp, *outfp; in kern_copy_file_range() local 4950 infp = outfp = NULL; in kern_copy_file_range() 4982 outoffp != NULL ? &cap_pwrite_rights : &cap_write_rights, &outfp); in kern_copy_file_range() 4985 if (outfp->f_ops == &badfileops) { in kern_copy_file_range() 4989 if (outfp->f_vnode == NULL) { in kern_copy_file_range() 4998 outoffp = &outfp->f_offset; in kern_copy_file_range() 5003 outvp = outfp->f_vnode; in kern_copy_file_range() 5005 if ((outfp->f_flag & (FWRITE | FAPPEND)) != FWRITE || in kern_copy_file_range() 5043 flags, infp->f_cred, outfp->f_cred, td); in kern_copy_file_range() 5053 if (outfp != NULL) in kern_copy_file_range() [all …]
|