| /freebsd-14.2/contrib/ntp/scripts/ |
| H A D | plot_summary.in | 106 my $out_file = "/tmp/tempdata$$"; 113 open OUTPUT, ">$out_file" or die "$out_file: $!"; 180 print "plot $ylimit \"$out_file\"" . 182 print "\"$out_file\" using 1:(\$3-\$6/2) " . 186 print "\"$out_file\" using 1:(\$3+\$6/2) " . 242 unlink $out_file; 250 my $out_file = "/tmp/tempdata$$"; 255 open OUTPUT, ">$out_file" or die "$out_file: $!"; 300 print "\"$out_file\" using 1:(\$3-\$7/2) " . 302 print "\"$out_file\" using 1:(\$3+\$7/2) " . [all …]
|
| H A D | summary.in | 124 my ($directory, $fname, $out_file) = @_; 127 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!"; 193 my ($directory, $fname, $out_file) = @_; 196 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!"; 285 my ($directory, $fname, $out_file) = @_; 288 open OUTPUT, ">>$out_file" or die "can't open $out_file: $!";
|
| /freebsd-14.2/contrib/wpa/src/utils/ |
| H A D | wpa_debug.c | 35 static FILE *out_file = NULL; variable 79 if (out_file) in wpa_debug_print_timestamp() 229 if (out_file) { in wpa_printf() 356 if (out_file) { in _wpa_hexdump() 434 if (out_file) { in _wpa_hexdump_ascii() 436 fprintf(out_file, in _wpa_hexdump_ascii() 442 fprintf(out_file, in _wpa_hexdump_ascii() 583 if (out_file == NULL) { in wpa_debug_open_file() 602 if (!out_file) in wpa_debug_stop_log() 604 fclose(out_file); in wpa_debug_stop_log() [all …]
|
| /freebsd-14.2/contrib/processor-trace/libipt/test/src/ |
| H A D | ptunit-section-file.c | 73 goto out_file; in pt_section_mk_status() 79 goto out_file; in pt_section_mk_status() 85 goto out_file; in pt_section_mk_status() 95 out_file: in pt_section_mk_status() 168 goto out_file; in pt_section_map() 174 goto out_file; in pt_section_map() 177 goto out_file; in pt_section_map() 186 out_file: in pt_section_map()
|
| /freebsd-14.2/lib/libxo/tests/ |
| H A D | functional_test.sh | 37 local out_file="${SRCDIR}/${tc}${xo_fmt:+.${xo_fmt}}.out" 38 [ -s "${out_file}" ] && out_flag="-o file:${out_file}" 46 atf_check -s exit:0 -e file:${err_file} -o file:${out_file} \
|
| /freebsd-14.2/usr.bin/xo/tests/ |
| H A D | functional_test.sh | 39 local out_file="${SRCDIR}/${tc}${xo_fmt:+.${xo_fmt}}.out" 40 [ -s "${out_file}" ] && out_flag="-o file:${out_file}" 42 atf_check -s exit:0 -e file:${err_file} -o file:${out_file} \
|
| /freebsd-14.2/bin/sh/tests/ |
| H A D | functional_test.sh | 38 local out_file="${SRCDIR}/${tc}.stdout" 39 [ -f "${out_file}" ] && out_flag="-o file:${out_file}"
|
| /freebsd-14.2/usr.bin/awk/tests/bugs-fixed/ |
| H A D | bug_fix_test.sh | 38 local out_file="${SRCDIR}/${tc}.ok" 39 [ -f "${out_file}" ] && out_flag="-o file:${out_file}"
|
| /freebsd-14.2/usr.bin/indent/tests/ |
| H A D | functional_test.sh | 42 local out_file="${tc}.stdout" 43 if [ -f "${out_file}" ]; then
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_symbolizer_mac.cpp | 106 char **out_module, char **out_file, uptr *line, in ParseCommandOutput() argument 137 if (out_file) { in ParseCommandOutput() 139 rest = ExtractTokenUpToDelimiter(rest, ":", out_file); in ParseCommandOutput()
|
| /freebsd-14.2/sbin/ffsinfo/ |
| H A D | ffsinfo.c | 137 char *out_file; in main() local 144 out_file = strdup("-"); in main() 170 free(out_file); in main() 171 out_file = strdup(optarg); in main() 172 if (out_file == NULL) in main() 225 DBG_OPEN(out_file); /* already here we need a superblock */ in main()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSettings.cpp | 377 StreamFile out_file(path.c_str(), options, in DoExecute() local 380 if (!out_file.GetFile().IsValid()) { in DoExecute() 389 GetDebugger().DumpAllPropertyValues(&clean_ctx, out_file, in DoExecute() 396 &clean_ctx, out_file, arg.ref(), OptionValue::eDumpGroupExport)); in DoExecute()
|
| H A D | CommandObjectThread.cpp | 2260 std::optional<StreamFile> out_file; in DoExecute() local 2262 out_file.emplace(m_options.m_output_file->GetPath().c_str(), in DoExecute() 2270 out_file ? *out_file : result.GetOutputStream(), in DoExecute() 2456 std::optional<StreamFile> out_file; in DoExecute() local 2458 out_file.emplace(m_options.m_output_file->GetPath().c_str(), in DoExecute() 2471 out_file ? *out_file : result.GetOutputStream(), in DoExecute()
|
| /freebsd-14.2/contrib/bmake/ |
| H A D | dir.c | 1081 const char *name, char **out_file) in FindFileRelative() argument 1137 *out_file = file; in FindFileRelative() 1143 const char *name, const char *base, char **out_file) in FindFileAbsolute() argument 1183 *out_file = file; in FindFileAbsolute()
|
| /freebsd-14.2/crypto/openssh/ |
| H A D | ssh-keygen.c | 2970 do_moduli_gen(const char *out_file, char **opts, size_t nopts) in do_moduli_gen() argument 3007 if ((out = fopen(out_file, "w")) == NULL) { in do_moduli_gen() 3009 out_file, strerror(errno)); in do_moduli_gen() 3023 do_moduli_screen(const char *out_file, char **opts, size_t nopts) in do_moduli_screen() argument 3072 if ((out = fopen(out_file, "a")) == NULL) { in do_moduli_screen() 3074 out_file, strerror(errno)); in do_moduli_screen()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 1097 StreamFile out_file(path.c_str(), in SerializeBreakpointsToFile() local 1102 if (!out_file.GetFile().IsValid()) { in SerializeBreakpointsToFile() 1151 break_store_ptr->Dump(out_file, false); in SerializeBreakpointsToFile() 1152 out_file.PutChar('\n'); in SerializeBreakpointsToFile()
|
| /freebsd-14.2/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_settings.cpp | 392 char *out_file, int *out_lb, in __kmp_stg_parse_par_range() argument 427 len = __kmp_readstr_with_sentinel(out_file, value, in __kmp_stg_parse_par_range()
|