| /freebsd-12-stable/release/packages/ |
| D | generate-ucl.sh | 17 outname="${OPTARG}" 34 outname="$(echo ${outname} | tr '-' '_')" 36 case "${outname}" in 38 outname="runtime" 42 outname="${origname}" 46 outname="${origname}" 49 _descr="$(make -C ${srctree}/release/packages -f Makefile.package -V ${outname}_DESCR)" 52 outname="${origname}" 55 _descr="$(make -C ${srctree}/release/packages -f Makefile.package -V ${outname}_DESCR)" 58 outname="${outname%%_lib32_development}" [all …]
|
| /freebsd-12-stable/contrib/dtc/ |
| D | dtc.c | 174 const char *outname = "-"; in main() local 198 outname = optarg; in main() 289 fprintf(depfile, "%s:", outname); in main() 295 outform = guess_type_by_name(outname, NULL); in main() 312 dti->outname = outname; in main() 344 if (streq(outname, "-")) { in main() 347 outf = fopen(outname, "wb"); in main() 350 outname, strerror(errno)); in main()
|
| D | dtc.h | 249 const char *outname; /* filename being written to, "-" for stdout */ member
|
| /freebsd-12-stable/contrib/gcclibs/libiberty/ |
| D | pex-common.c | 157 char *outname; in pex_run_in_environment() local 166 outname = (char *) orig_outname; in pex_run_in_environment() 219 if (outname == NULL) in pex_run_in_environment() 223 outname = concat (obj->tempbase, outname, NULL); in pex_run_in_environment() 230 outname = temp_file (obj, flags, outname); in pex_run_in_environment() 231 if (! outname) in pex_run_in_environment() 238 if (outname != orig_outname) in pex_run_in_environment() 243 pex_add_remove (obj, outname, outname_allocated); in pex_run_in_environment() 248 obj->next_input_name = outname; in pex_run_in_environment() 267 out = obj->funcs->open_write (obj, outname, in pex_run_in_environment() [all …]
|
| D | pexecute.txh | 33 …const char *@var{executable}, char * const *@var{argv}, const char *@var{outname}, const char *@va… 49 of the program will be sent to @var{outname}, or, if @var{outname} is 61 @var{outname} is a suffix. See the description of @var{outname}, 84 @var{outname} is used to set the name of the file to use for standard 93 if @code{PEX_LAST} is set in @var{flags}, and @var{outname} is 109 @var{outname} may not be @code{NULL}. If the @var{tempbase} parameter 111 the concatenation of @var{tempbase} and @var{outname}. If 113 file name ending in @var{outname}. 117 case, if @var{outname} is not @code{NULL}, it is used as the output 118 file name. If @var{outname} is @code{NULL}, and @var{tempbase} was [all …]
|
| D | pex-one.c | 25 const char *pname, const char *outname, const char *errname, in pex_one() argument 32 errmsg = pex_run (obj, flags, executable, argv, outname, errname, err); in pex_one()
|
| D | functions.texi | 801 …le}, char * const *@var{argv}, const char *@var{pname}, const char *@var{outname}, const char *@va… 807 @code{PEX_BINARY_OUTPUT}. @var{outname} is interpreted as if 827 …const char *@var{executable}, char * const *@var{argv}, const char *@var{outname}, const char *@va… 843 of the program will be sent to @var{outname}, or, if @var{outname} is 855 @var{outname} is a suffix. See the description of @var{outname}, 878 @var{outname} is used to set the name of the file to use for standard 887 if @code{PEX_LAST} is set in @var{flags}, and @var{outname} is 903 @var{outname} may not be @code{NULL}. If the @var{tempbase} parameter 905 the concatenation of @var{tempbase} and @var{outname}. If 907 file name ending in @var{outname}. [all …]
|
| /freebsd-12-stable/contrib/dma/ |
| D | dns.c | 134 char outname[MAXDNAME]; in dns_get_mx_list() local 206 cp, outname, sizeof(outname)); in dns_get_mx_list() 210 err = add_host(pref, outname, port, &hosts, &nhosts); in dns_get_mx_list() 217 cp, outname, sizeof(outname)); in dns_get_mx_list() 225 searchhost = outname; in dns_get_mx_list()
|
| /freebsd-12-stable/lib/libc/gmon/ |
| D | gmon.c | 127 char outname[128]; in _mcleanup() local 155 snprintf(outname, sizeof(outname), "%s.%d.gmon", in _mcleanup() 158 snprintf(outname, sizeof(outname), "%s.gmon", _getprogname()); in _mcleanup() 160 fd = _open(outname, O_CREAT|O_TRUNC|O_WRONLY|O_CLOEXEC, 0666); in _mcleanup() 162 _warn("_mcleanup: %s", outname); in _mcleanup()
|
| /freebsd-12-stable/usr.bin/patch/ |
| D | patch.c | 63 char *outname = NULL; variable 236 if (outname == NULL) in main() 237 outname = xstrdup(filearg[0]); in main() 250 out_existed = stat(outname, &statbuf) == 0; in main() 417 char *realout = outname; in main() 420 if (move_file(TMPOUTNAME, outname) < 0) { in main() 425 chmod(outname, filemode); in main() 456 if (strlcpy(rejname, outname, in main() 458 fatal("filename %s is too long\n", outname); in main() 461 fatal("filename %s is too long\n", outname); in main() [all …]
|
| D | common.h | 73 extern char *outname;
|
| /freebsd-12-stable/contrib/atf/atf-c/ |
| D | check_test.c | 221 const char *outname, const char *errname) in init_and_run_h_tc() argument 226 run_h_tc(tc, outname, errname, "result"); in init_and_run_h_tc() 437 #define CHECK_LINES(path, outname, resname) \ in ATF_TC_BODY() argument 441 check_line(fd, "Line 1 to " outname " for " resname); \ in ATF_TC_BODY() 442 check_line(fd, "Line 2 to " outname " for " resname); \ in ATF_TC_BODY()
|
| /freebsd-12-stable/contrib/binutils/include/ |
| D | libiberty.h | 472 const char *outname, const char *errname, 489 const char *outname, 561 const char *outname, const char *errname,
|
| /freebsd-12-stable/contrib/gcclibs/include/ |
| D | libiberty.h | 452 const char *outname, const char *errname, 469 const char *outname, 533 const char *outname, const char *errname,
|
| /freebsd-12-stable/contrib/atf/atf-c/detail/ |
| D | test_helpers.c | 122 run_h_tc(atf_tc_t *tc, const char *outname, const char *errname, in run_h_tc() argument 130 RE(atf_fs_path_init_fmt(&outpath, outname)); in run_h_tc()
|
| /freebsd-12-stable/contrib/gcc/ |
| D | tlink.c | 282 tlink_execute (const char *prog, char **argv, const char *outname, in tlink_execute() argument 287 pex = collect_execute (prog, argv, outname, errname); in tlink_execute() 459 const char *const outname = frob_extension (f->key, ".rnw"); in recompile_files() local 460 FILE *output = fopen (outname, "w"); in recompile_files() 479 if (rename (outname, f->key) == -1) in recompile_files()
|
| /freebsd-12-stable/usr.sbin/yppoll/ |
| D | yppoll.c | 69 char **outname) in get_remote_info() argument 123 *outname = (char *)strdup(yprm.master); in get_remote_info()
|
| /freebsd-12-stable/contrib/atf/atf-c++/ |
| D | check_test.cpp | 301 check_lines(const std::string& path, const char* outname, in check_lines() argument 309 ATF_REQUIRE_EQ(line, std::string("Line 1 to ") + outname + " for " + in check_lines() 312 ATF_REQUIRE_EQ(line, std::string("Line 2 to ") + outname + " for " + in check_lines()
|
| /freebsd-12-stable/usr.sbin/ypserv/common/ |
| D | yplib_host.h | 42 char **outname);
|
| D | yplib_host.c | 309 yp_master_host(CLIENT *client, char *indomain, char *inmap, char **outname) in yp_master_host() argument 329 *outname = strdup(yprm.peer); in yp_master_host()
|
| /freebsd-12-stable/include/rpcsvc/ |
| D | ypclnt.h | 86 int yp_master(char *indomain, char *inmap, char **outname);
|
| /freebsd-12-stable/contrib/binutils/libiberty/ |
| D | functions.texi | 817 …le}, char * const *@var{argv}, const char *@var{pname}, const char *@var{outname}, const char *@va… 823 @code{PEX_BINARY_OUTPUT}. @var{outname} is interpreted as if 856 …const char *@var{executable}, char * const *@var{argv}, const char *@var{outname}, const char *@va… 872 of the program will be sent to @var{outname}, or, if @var{outname} is 884 @var{outname} is a suffix. See the description of @var{outname}, 916 @var{outname} is used to set the name of the file to use for standard 925 if @code{PEX_LAST} is set in @var{flags}, and @var{outname} is 941 @var{outname} may not be @code{NULL}. If the @var{tempbase} parameter 943 the concatenation of @var{tempbase} and @var{outname}. If 945 file name ending in @var{outname}. [all …]
|
| /freebsd-12-stable/tools/tools/shlib-compat/ |
| D | shlib-compat.py | 57 def init(self, outname): argument 58 if outname and outname != '-': 59 self.out = open(outname, "w")
|
| /freebsd-12-stable/contrib/binutils/binutils/ |
| D | dlltool.c | 2241 char * outname = xmalloc (strlen (TMP_STUB) + 10); in make_one_lib_file() local 2245 sprintf (outname, "%s%05d.o", TMP_STUB, i); in make_one_lib_file() 2247 abfd = bfd_openw (outname, HOW_BFD_WRITE_TARGET); in make_one_lib_file() 2251 fatal (_("bfd_open failed open stub file: %s"), outname); in make_one_lib_file() 2254 inform (_("Creating stub file: %s"), outname); in make_one_lib_file() 2661 abfd = bfd_openr (outname, HOW_BFD_READ_TARGET); in make_one_lib_file()
|
| /freebsd-12-stable/sys/contrib/zstd/tests/fuzz/ |
| D | fuzz.py | 701 outname = abs_join(seed, name) 704 with open(outname, 'wb') as out:
|