Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/ntp/scripts/
H A Dplot_summary.in106 my $out_file = "/tmp/tempdata$$";
113 open OUTPUT, ">$out_file" or die "$out_file: $!";
151 close OUTPUT or die "close failed on $out_file: $!";
180 print "plot $ylimit \"$out_file\"" .
182 print "\"$out_file\" using 1:(\$3-\$6/2) " .
184 print "\"$out_file\" using 1:3 smooth bezier " .
186 print "\"$out_file\" using 1:(\$3+\$6/2) " .
192 print "plot \"$out_file\" using 1:7:8:9 title \"mean frequency\", ";
193 print "\"$out_file\" usin
[all...]
H A Dsummary.in124 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/contrib/wpa/src/utils/
H A Dwpa_debug.c35 static FILE *out_file = NULL; variable
79 if (out_file) in wpa_debug_print_timestamp()
80 fprintf(out_file, "%ld.%06u: ", (long) tv.sec, in wpa_debug_print_timestamp()
83 if (!out_file && !wpa_debug_syslog) in wpa_debug_print_timestamp()
229 if (out_file) { in wpa_printf()
231 vfprintf(out_file, fmt, ap); in wpa_printf()
232 fprintf(out_file, "\n"); in wpa_printf()
236 if (!wpa_debug_syslog && !out_file) { in wpa_printf()
356 if (out_file) { in _wpa_hexdump()
357 fprintf(out_file, "%s - hexdump(len=%lu):", in _wpa_hexdump()
[all …]
/freebsd/contrib/processor-trace/libipt/test/src/
H A Dptunit-section-file.c73 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/lib/libxo/tests/
H A Dfunctional_test.sh37 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/usr.bin/xo/tests/
H A Dfunctional_test.sh39 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/bin/sh/tests/
H A Dfunctional_test.sh38 local out_file="${SRCDIR}/${tc}.stdout"
39 [ -f "${out_file}" ] && out_flag="-o file:${out_file}"
/freebsd/usr.bin/awk/tests/bugs-fixed/
H A Dbug_fix_test.sh38 local out_file="${SRCDIR}/${tc}.ok"
39 [ -f "${out_file}" ] && out_flag="-o file:${out_file}"
/freebsd/crypto/libecc/src/tests/
H A Dec_utils.c376 FILE *in_file = NULL, *out_file = NULL; in store_sig() local
399 out_file = fopen(out_fname, "wb"); in store_sig()
400 if (out_file == NULL) { in store_sig()
407 written = fwrite(hdr, 1, sizeof(metadata_hdr), out_file); in store_sig()
416 written = fwrite(buf, 1, read, out_file); in store_sig()
448 out_file); in store_sig()
463 if(out_file != NULL){ in store_sig()
464 if(fclose(out_file)){ in store_sig()
657 FILE *out_file = NULL; in sign_bin_file() local
925 out_file = fopen(out_fname, "wb"); in sign_bin_file()
[all …]
/freebsd/usr.bin/indent/tests/
H A Dfunctional_test.sh42 local out_file="${tc}.stdout"
43 if [ -f "${out_file}" ]; then
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp106 char **out_module, char **out_file, uptr *line, in ParseCommandOutput()
137 if (out_file) { in ParseCommandOutput()
139 rest = ExtractTokenUpToDelimiter(rest, ":", out_file); in ParseCommandOutput()
103 ParseCommandOutput(const char * str,uptr addr,char ** out_name,char ** out_module,char ** out_file,uptr * line,uptr * start_address) ParseCommandOutput() argument
/freebsd/sbin/ffsinfo/
H A Dffsinfo.c130 char *out_file; in main() local
137 out_file = strdup("-"); in main()
163 free(out_file); in main()
164 out_file = strdup(optarg); in main()
165 if (out_file == NULL) in main()
209 DBG_OPEN(out_file); /* already here we need a superblock */ in main()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSettings.cpp345 StreamFile out_file(path.c_str(), options, in DoExecute() local
348 if (!out_file.GetFile().IsValid()) { in DoExecute()
357 GetDebugger().DumpAllPropertyValues(&clean_ctx, out_file, in DoExecute()
364 &clean_ctx, out_file, arg.ref(), OptionValue::eDumpGroupExport)); in DoExecute()
H A DCommandObjectThread.cpp2191 std::optional<StreamFile> out_file; in DoExecute() local
2193 out_file.emplace(m_options.m_output_file->GetPath().c_str(), in DoExecute()
2201 out_file ? *out_file : result.GetOutputStream(), in DoExecute()
2386 std::optional<StreamFile> out_file; in DoExecute() local
2388 out_file.emplace(m_options.m_output_file->GetPath().c_str(), in DoExecute()
2401 out_file ? *out_file : result.GetOutputStream(), in DoExecute()
/freebsd/contrib/bmake/
H A Ddir.c1056 const char *name, char **out_file) in FindFileRelative() argument
1112 *out_file = file; in FindFileRelative()
1118 const char *name, const char *base, char **out_file) in FindFileAbsolute() argument
1148 *out_file = file; in FindFileAbsolute()
/freebsd/crypto/openssh/
H A Dssh-keygen.c2994 do_moduli_gen(const char *out_file, char **opts, size_t nopts) in do_moduli_gen() argument
3031 if ((out = fopen(out_file, "w")) == NULL) { in do_moduli_gen()
3033 out_file, strerror(errno)); in do_moduli_gen()
3047 do_moduli_screen(const char *out_file, char **opts, size_t nopts) in do_moduli_screen() argument
3096 if ((out = fopen(out_file, "a")) == NULL) { in do_moduli_screen()
3098 out_file, strerror(errno)); in do_moduli_screen()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp1098 StreamFile out_file(path.c_str(), in SerializeBreakpointsToFile() local
1103 if (!out_file.GetFile().IsValid()) { in SerializeBreakpointsToFile()
1152 break_store_ptr->Dump(out_file, false); in SerializeBreakpointsToFile()
1153 out_file.PutChar('\n'); in SerializeBreakpointsToFile()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_settings.cpp392 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()