Searched refs:ofn (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.1-release/tools/test/ppsapi/
H A Dppsapitest.c41 char const *ofn; local
43 ofn = NULL;
53 case 'o': ofn = optarg; break;
63 if (ofn != NULL) {
64 fdo = fopen(ofn, "w");
66 err(1, "Cannot open %s", ofn);
179 err(1, "Write error on %s", ofn);
/freebsd-10.1-release/usr.bin/xlint/xlint/
H A Dxlint.c587 char **args, *ofn, *p, *pathname; local
615 ofn = outputfn;
623 ofn = xmalloc(strlen(bn) + (bn == suff ? 4 : 2));
625 (void)sprintf(ofn, "%.*s", (int)len, bn);
626 (void)strcat(ofn, ".ln");
628 ofn = xmalloc(strlen(tmpdir) + sizeof ("lint1.XXXXXX"));
629 (void)sprintf(ofn, "%slint1.XXXXXX", tmpdir);
630 fd = mkstemp(ofn);
638 appcstrg(&p1out, ofn);
691 appcstrg(&args, ofn);
[all...]
/freebsd-10.1-release/usr.bin/time/
H A Dtime.c81 char *ofn = NULL; local
100 ofn = optarg;
114 if (ofn) {
115 if ((out = fopen(ofn, aflag ? "ae" : "we")) == NULL)
116 err(1, "%s", ofn);
/freebsd-10.1-release/usr.bin/unifdef/
H A Dunifdef.c357 processinout(const char *ifn, const char *ofn) argument
372 if (strcmp(ofn, "-") == 0) {
377 if (stat(ofn, &st) < 0) {
378 output = fopen(ofn, "wb");
380 err(2, "can't create %s", ofn);
385 tempname = astrcat(ofn, ".XXXXXX");
393 char *backname = astrcat(ofn, backext);
394 if (rename(ofn, backname) < 0)
395 err(2, "can't rename \"%s\" to \"%s%s\"", ofn, ofn, backex
[all...]
/freebsd-10.1-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dmerge.c759 fndef_t *ofn = old->t_fndef; local
762 (void) remap_node(&nfn->fn_ret, ofn->fn_ret, old->t_id, new, mcd);
764 nfn->fn_nargs = ofn->fn_nargs;
765 nfn->fn_vargs = ofn->fn_vargs;
768 nfn->fn_args = xcalloc(sizeof (tdesc_t *) * ofn->fn_nargs);
770 for (i = 0; i < (int) ofn->fn_nargs; i++) {
771 (void) remap_node(&nfn->fn_args[i], ofn->fn_args[i], old->t_id,
/freebsd-10.1-release/crypto/openssh/
H A Dchannels.c762 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
771 c->output_filter = ofn;
761 channel_register_filter(int id, channel_infilter_fn *ifn, channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) argument

Completed in 178 milliseconds