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

/freebsd-10-stable/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-stable/usr.bin/xlint/xlint/
H A Dxlint.c597 char **args, *ofn, *p, *pathname; local
625 ofn = outputfn;
633 ofn = xmalloc(strlen(bn) + (bn == suff ? 4 : 2));
635 (void)sprintf(ofn, "%.*s", (int)len, bn);
636 (void)strcat(ofn, ".ln");
638 ofn = xmalloc(strlen(tmpdir) + sizeof ("lint1.XXXXXX"));
639 (void)sprintf(ofn, "%slint1.XXXXXX", tmpdir);
640 fd = mkstemp(ofn);
648 appcstrg(&p1out, ofn);
701 appcstrg(&args, ofn);
[all...]
/freebsd-10-stable/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-stable/usr.bin/unifdef/
H A Dunifdef.c378 processinout(const char *ifn, const char *ofn) argument
393 if (strcmp(ofn, "-") == 0) {
398 if (stat(ofn, &st) < 0) {
399 output = fopen(ofn, "wb");
401 err(2, "can't create %s", ofn);
406 tempname = astrcat(ofn, ".XXXXXX");
414 char *backname = astrcat(ofn, backext);
415 if (rename(ofn, backname) < 0)
416 err(2, "can't rename \"%s\" to \"%s\"", ofn, backname);
419 if (replace(tempname, ofn) <
[all...]
/freebsd-10-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dmerge.c760 fndef_t *ofn = old->t_fndef; local
763 (void) remap_node(&nfn->fn_ret, ofn->fn_ret, old->t_id, new, mcd);
765 nfn->fn_nargs = ofn->fn_nargs;
766 nfn->fn_vargs = ofn->fn_vargs;
769 nfn->fn_args = xcalloc(sizeof (tdesc_t *) * ofn->fn_nargs);
771 for (i = 0; i < (int) ofn->fn_nargs; i++) {
772 (void) remap_node(&nfn->fn_args[i], ofn->fn_args[i], old->t_id,
/freebsd-10-stable/crypto/openssh/
H A Dchannels.c779 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
788 c->output_filter = ofn;
778 channel_register_filter(int id, channel_infilter_fn *ifn, channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) argument

Completed in 176 milliseconds