Home
last modified time | relevance | path

Searched refs:ofn (Results 1 – 9 of 9) sorted by relevance

/dflybsd-src/contrib/mdocml/
H A Dterm_tag.c89 (void)snprintf(tag_files.ofn, sizeof(tag_files.ofn), in term_tag_init()
91 if ((ofd = mkstemps(tag_files.ofn, strlen(suffix))) == -1) { in term_tag_init()
93 "%s: %s", tag_files.ofn, strerror(errno)); in term_tag_init()
97 (void)strlcpy(tag_files.ofn, outfilename, in term_tag_init()
98 sizeof(tag_files.ofn)); in term_tag_init()
164 len, cp, tag_files.ofn, line); in term_tag_write()
204 if (strncmp(tag_files.ofn, "/tmp/man.", 9) == 0) { in term_tag_unlink()
205 unlink(tag_files.ofn); in term_tag_unlink()
206 *tag_files.ofn = '\0'; in term_tag_unlink()
H A Dterm_tag.h22 char ofn[80]; /* Output file name. */ member
H A Dmain.c927 outst->tag_files->ofn, strerror(errno)); in process_onefile()
1337 outst->tag_files->ofn, tag_target); in spawn_pager()
1339 argv[argc] = outst->tag_files->ofn; in spawn_pager()
/dflybsd-src/usr.bin/time/
H A Dtime.c74 const char *ofn = NULL; in main() local
94 ofn = optarg; in main()
107 if (ofn) { in main()
108 if ((out = fopen(ofn, aflag ? "ae" : "we")) == NULL) in main()
109 err(1, "%s", ofn); in main()
/dflybsd-src/usr.bin/unifdef/
H A Dunifdef.c378 processinout(const char *ifn, const char *ofn) in processinout() argument
393 if (strcmp(ofn, "-") == 0) { in processinout()
398 if (stat(ofn, &st) < 0) { in processinout()
399 output = fopen(ofn, "wb"); in processinout()
401 err(2, "can't create %s", ofn); in processinout()
406 tempname = astrcat(ofn, ".XXXXXX"); in processinout()
414 char *backname = astrcat(ofn, backext); in processinout()
415 if (rename(ofn, backname) < 0) in processinout()
416 err(2, "can't rename \"%s\" to \"%s\"", ofn, backname); in processinout()
423 } else if (replace(tempname, ofn) < 0) in processinout()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/cp/
H A Dname-lookup.c3439 tree ofn = OVL_CURRENT (elt); in set_decl_namespace() local
3442 DECL_CONTEXT (decl) = DECL_CONTEXT (ofn); in set_decl_namespace()
3443 if (decls_match (decl, ofn)) in set_decl_namespace()
3445 if (found && !decls_match (found, ofn)) in set_decl_namespace()
3452 found = ofn; in set_decl_namespace()
/dflybsd-src/contrib/gcc-8.0/gcc/cp/
H A Dname-lookup.c4987 tree ofn = *iter; in set_decl_namespace() local
4991 DECL_CONTEXT (decl) = DECL_CONTEXT (ofn); in set_decl_namespace()
4992 if (decls_match (decl, ofn)) in set_decl_namespace()
5000 found = ofn; in set_decl_namespace()
H A Dpt.c13287 tree ofn = fn; in enclosing_instantiation_of() local
13296 gcc_assert (DECL_NAME (ofn) == DECL_NAME (otctx) in enclosing_instantiation_of()
13297 || DECL_CONV_FN_P (ofn)); in enclosing_instantiation_of()
13298 return ofn; in enclosing_instantiation_of()
/dflybsd-src/crypto/openssh/
H A Dchannels.c1207 channel_outfilter_fn *ofn, channel_filter_cleanup_fn *cfn, void *ctx) in channel_register_filter() argument
1216 c->output_filter = ofn; in channel_register_filter()