| /src/external/bsd/kyua-atf-compat/dist/ |
| atf-report.sh | 61 # \param output_file The name of the file to which to write the HTML report. 64 local output_file="${1}"; shift 66 [ "${output_file}" != "/dev/stdout" ] || \ 69 local dir="$(dirname "${output_file}")" 70 local index_name="${output_file##*/}" 86 # \param output_file The name of the file to which to write the HTML report. 89 local output_file="${1}"; shift 92 report_html "${output_file}" 104 # \param output_file The name of the file to which to write the textual report. 107 local output_file="${1}"; shif [all...] |
| /src/external/gpl3/gdb/dist/gdb/contrib/ |
| cc-with-tweaks.sh | 85 output_file=a.out 129 output_file="$arg" 158 output_dir="${output_file%/*}" 159 [ "$output_dir" = "$output_file" ] && output_dir="." 164 if [ ! -f "$output_file" ] 166 echo "$myname: Internal error: $output_file missing." >&2 177 tmpdir=$(dirname "$output_file")/"$subdir" 182 $OBJCOPY --compress-debug-sections "$output_file" 189 mv "$output_file" "$tmpdir" 190 output_dir=$(dirname "$output_file") [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/contrib/ |
| cc-with-tweaks.sh | 85 output_file=a.out 129 output_file="$arg" 158 output_dir="${output_file%/*}" 159 [ "$output_dir" = "$output_file" ] && output_dir="." 164 if [ ! -f "$output_file" ] 166 echo "$myname: Internal error: $output_file missing." >&2 177 tmpdir=$(dirname "$output_file")/"$subdir" 182 $OBJCOPY --compress-debug-sections "$output_file" 189 mv "$output_file" "$tmpdir" 190 output_dir=$(dirname "$output_file") [all...] |
| /src/usr.bin/xlint/common/ |
| emit.c | 49 static FILE *output_file; variable 56 if ((output_file = fopen(name, "w")) == NULL) 64 if (fclose(output_file) == EOF) 72 fputc(c, output_file);
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| csharpcomp.h | 28 output_file is the name of the output file; it should end in .exe or .dll. 37 const char *output_file,
|
| csharpcomp.c | 70 const char *output_file, bool output_is_library, 112 *argp++ = (char *) output_file; 176 const char *output_file, bool output_is_library, 224 char *option = (char *) xallocsa (5 + strlen (output_file) + 1); 226 strcpy (option + 5, output_file); 330 const char *output_file, bool output_is_library, 405 char *option = (char *) xallocsa (5 + strlen (output_file) + 1); 407 strcpy (option + 5, output_file); 480 const char *output_file, 485 (strlen (output_file) >= [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/src/ |
| write-tcl.c | 111 write_msg (FILE *output_file, message_list_ty *mlp, const char *locale_name) 125 fprintf (output_file, "set ::msgcat::header "); 128 fprintf (output_file, "::msgcat::mcset %s ", locale_name); 129 write_tcl_string (output_file, mp->msgid); 130 fprintf (output_file, " "); 132 write_tcl_string (output_file, mp->msgstr); 133 fprintf (output_file, "\n"); 193 FILE *output_file; local 210 output_file = fopen (file_name, "w"); 211 if (output_file == NULL [all...] |
| write-qt.c | 187 write_u8 (FILE *output_file, unsigned char value) 189 putc (value, output_file); 194 write_u16 (FILE *output_file, unsigned short value) 201 fwrite (data, 2, 1, output_file); 206 write_u32 (FILE *output_file, unsigned int value) 215 fwrite (data, 4, 1, output_file); 382 write_section (FILE *output_file, unsigned char tag, void *data, size_t size) 387 write_u8 (output_file, tag); 388 write_u32 (output_file, size); 389 fwrite (data, size, 1, output_file); 654 FILE *output_file; local [all...] |
| write-mo.c | 146 write_table (FILE *output_file, message_list_ty *mlp) 507 fwrite (&header, header_size, 1, output_file); 510 /* Here output_file is at position header.orig_tab_offset. */ 528 fwrite (orig_tab, nstrings * sizeof (struct string_desc), 1, output_file); 531 /* Here output_file is at position header.trans_tab_offset. */ 548 fwrite (trans_tab, nstrings * sizeof (struct string_desc), 1, output_file); 556 /* Here output_file is at position header.hash_tab_offset. */ 589 fwrite (hash_tab, hash_tab_size * sizeof (nls_uint32), 1, output_file); 601 /* Here output_file is at position header.sysdep_segments_offset. */ 623 output_file); 792 FILE *output_file; local [all...] |
| msgconv.c | 102 char *output_file; local 130 output_file = NULL; 166 output_file = optarg; 276 msgdomain_list_print (result, output_file, output_syntax, force_po, false);
|
| msgen.c | 97 char *output_file; local 124 output_file = NULL; 158 output_file = optarg; 260 msgdomain_list_print (result, output_file, output_syntax, force_po, false);
|
| /src/external/bsd/tradcpp/dist/ |
| output.c | 51 if (mode.output_file == NULL) { 54 outputfd = open(mode.output_file, O_WRONLY|O_CREAT|O_TRUNC, 58 mode.output_file, strerror(errno)); 85 mode.output_file, strerror(errno)); 90 mode.output_file); 199 if (mode.output_file != NULL && outputfd >= 0) {
|
| mode.h | 42 const char *output_file; member in struct:mode
|
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| index.h | 46 char *output_file; /* Output file for output_line. */ member in struct:index_elt
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| reports.py | 16 def __init__(self, output_file): 17 self.output_file = output_file 66 with open(self.output_file, 'w') as file: 86 def __init__(self, output_file): 87 self.output_file = output_file 95 with open(self.output_file, 'w') as file: 157 def __init__(self, output_file): 158 self.output_file = output_fil [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| genautomata.cc | 291 static FILE *output_file; 6956 fputs ("0 /* This is dummy el because the vect is empty */", output_file); 6960 fprintf (output_file, "%5ld", (long) vect[i]); 6964 fputs (",\n", output_file); 6967 fputs (", ", output_file); 7196 fprintf (output_file, "struct %s\n{\n", CHIP_NAME); 7201 fprintf (output_file, " "); 7202 output_state_member_type (output_file, automaton); 7203 fprintf (output_file, " "); 7204 output_chip_member_name (output_file, automaton) 288 static FILE *output_file; variable [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| genautomata.cc | 291 static FILE *output_file; 6959 fputs ("0 /* This is dummy el because the vect is empty */", output_file); 6963 fprintf (output_file, "%5ld", (long) vect[i]); 6967 fputs (",\n", output_file); 6970 fputs (", ", output_file); 7199 fprintf (output_file, "struct %s\n{\n", CHIP_NAME); 7204 fprintf (output_file, " "); 7205 output_state_member_type (output_file, automaton); 7206 fprintf (output_file, " "); 7207 output_chip_member_name (output_file, automaton) 288 static FILE *output_file; variable [all...] |
| /src/crypto/external/apache2/openssl/dist/test/recipes/ |
| 80-test_ssl_new.t | 159 my $output_file = $conf . "." . $provider; 167 stdout => $output_file)), 175 $run_test = is(cmp_text($output_file, $conf_file), 0, 176 "Comparing generated $output_file with $conf_file."); 187 ok(run(test(["ssl_test", $output_file, $provider, 190 ok(run(test(["ssl_test", $output_file, $provider])), $msg);
|
| /src/crypto/external/bsd/openssl/dist/test/recipes/ |
| 80-test_ssl_new.t | 146 my $output_file = $conf . "." . $provider; 154 stdout => $output_file)), 162 $run_test = is(cmp_text($output_file, $conf_file), 0, 163 "Comparing generated $output_file with $conf_file."); 174 ok(run(test(["ssl_test", $output_file, $provider, 177 ok(run(test(["ssl_test", $output_file, $provider])), $msg);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/profile/ |
| GCDAProfiling.c | 79 static FILE *output_file = NULL; variable 220 fseek(output_file, 0L, SEEK_END); 221 file_size = ftell(output_file); 295 output_file = fdopen(fd, mode); 362 if (!output_file) return; 383 if (!output_file) return; 435 if (!output_file) return; 483 if (output_file) { 487 fwrite(write_buffer, cur_pos, 1, output_file); 493 fclose(output_file); [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/testsuite/lib/ |
| libphobos.exp | 47 set output_file "" 59 set output_file "[file rootname [file tail $prog]].s" 66 set output_file "./[file rootname [file tail $prog]].exe" 69 catch { remote_file build delete $output_file } 73 set output_file "./[file rootname [file tail $prog]].exe" 89 return [list "::unsupported::$unsupported_message" $output_file] 92 set comp_output [$select_compile "$prog" "$output_file" "$compile_type" $options] 93 return [list $comp_output $output_file]
|
| /src/external/mpl/dhcp/dist/keama/ |
| keama.c | 61 char *output_file = NULL; variable 114 output_file = argv[i]; 151 if (output_file) { 152 output = fopen(output_file, "w"); 154 usage("Cannot open '%s' for writing", output_file);
|
| /src/external/apache2/llvm/dist/llvm/utils/ |
| bugpoint_gisel_reducer.py | 137 output_file = 'bugpoint-reduced-simplified.bc' 139 log('$ {}/bin/llvm-dis -o - {}'.format(build_dir, output_file)) 142 '-pass-remarks-missed=gisel {}'.format(build_dir, output_file))
|
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_archive_write_set_format_filter_by_ext.c | 30 test_format_filter_by_ext(const char *output_file, 47 r = archive_write_set_format_filter_by_ext(a, output_file); 49 r = archive_write_set_format_filter_by_ext_def(a, output_file, def_ext);
|
| /src/external/bsd/ntp/dist/scripts/ |
| plot_summary.in | 29 $output_file, $output_file_number); 45 $output_file = $opts->{'output-file'}; 86 if ($output_file) { 87 while ( -r ($file = "$output_file$output_file_number") ) {
|