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

/freebsd-11-stable/contrib/mdocml/
H A Dtag.h19 char ofn[20]; member in struct:tag_files
H A Dtag.c87 (void)strlcpy(tag_files.ofn, "/tmp/man.XXXXXXXXXX",
88 sizeof(tag_files.ofn));
91 if ((ofd = mkstemp(tag_files.ofn)) == -1)
115 *tag_files.ofn = '\0';
208 entry->s, tag_files.ofn, entry->lines[i]);
230 if (*tag_files.ofn != '\0')
231 unlink(tag_files.ofn);
H A Dmain.c1152 argv[argc++] = tag_files->ofn;
/freebsd-11-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-11-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-11-stable/usr.bin/time/
H A Dtime.c82 char *ofn = NULL; local
101 ofn = optarg;
115 if (ofn) {
116 if ((out = fopen(ofn, aflag ? "ae" : "we")) == NULL)
117 err(1, "%s", ofn);
/freebsd-11-stable/usr.bin/unifdef/
H A Dunifdef.c384 processinout(const char *ifn, const char *ofn) argument
399 if (strcmp(ofn, "-") == 0) {
404 if (stat(ofn, &st) < 0) {
405 output = fopen(ofn, "wb");
407 err(2, "can't create %s", ofn);
412 tempname = astrcat(ofn, ".XXXXXX");
420 char *backname = astrcat(ofn, backext);
421 if (rename(ofn, backname) < 0)
422 err(2, "can't rename \"%s\" to \"%s\"", ofn, backname);
429 } else if (replace(tempname, ofn) <
[all...]
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A Dascii.c62 static void srec_write_symtab(int ofd, const char *ofn, Elf *e, Elf_Scn *scn,
64 static void srec_write_S0(int ofd, const char *ofn);
78 create_srec(struct elfcopy *ecp, int ifd, int ofd, const char *ofn) argument
106 srec_write_symtab(ofd, ofn, e, scn, &sh);
157 srec_write_S0(ofd, ofn);
744 srec_write_symtab(int ofd, const char *ofn, Elf *e, Elf_Scn *scn, GElf_Shdr *sh) argument
770 snprintf(line, sizeof(line), "$$ %s\r\n", ofn);
796 srec_write_S0(int ofd, const char *ofn) argument
799 srec_write(ofd, '0', 0, ofn, strlen(ofn));
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dmerge.c750 fndef_t *ofn = old->t_fndef; local
753 (void) remap_node(&nfn->fn_ret, ofn->fn_ret, old->t_id, new, mcd);
755 nfn->fn_nargs = ofn->fn_nargs;
756 nfn->fn_vargs = ofn->fn_vargs;
759 nfn->fn_args = xcalloc(sizeof (tdesc_t *) * ofn->fn_nargs);
761 for (i = 0; i < (int) ofn->fn_nargs; i++) {
762 (void) remap_node(&nfn->fn_args[i], ofn->fn_args[i], old->t_id,
/freebsd-11-stable/crypto/openssh/
H A Dchannels.c840 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx)
849 c->output_filter = ofn;
839 channel_register_filter(int id, channel_infilter_fn *ifn, channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) argument

Completed in 212 milliseconds