Searched refs:infile (Results 1 - 25 of 86) sorted by path

1234

/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfconvert.c49 static char *infile = NULL; variable
69 fprintf(stderr, "Removing %s\n", infile);
70 unlink(infile);
209 infile = argv[optind];
210 if (access(infile, R_OK) != 0)
211 terminate("Can't access %s", infile);
236 if (!file_read(filetd, infile, ignore_non_c))
237 terminate("%s doesn't have type data to convert\n", infile);
252 if (outfile && strcmp(infile, outfile) != 0) {
253 write_ctf(mstrtd, infile, outfil
[all...]
/freebsd-9.3-release/contrib/binutils/binutils/
H A Dcoffgrok.c599 int infile = 0; local
626 if (infile)
630 infile = 1;
/freebsd-9.3-release/contrib/binutils/
H A Dmissing295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c113 usage: gensnmptree [-dEehlt] [-I directory] [-i infile] [-p prefix]\n\
1449 char *infile = NULL; local
1475 infile = optarg;
1501 if (infile == NULL) {
1504 if ((fp = fopen(infile, "r")) == NULL)
1505 err(1, "%s", infile);
1506 input_new(fp, NULL, infile);
/freebsd-9.3-release/contrib/cvs/diff/
H A Ddiff3.c1718 output_diff3_merge (infile, diff, mapping, rev_mapping,
1720 FILE *infile;
1759 c = getc (infile);
1761 if (ferror (infile))
1763 else if (feof (infile))
1813 while ((c = getc (infile)) != '\n')
1815 if (ferror (infile))
1817 else if (feof (infile))
1825 while ((c = getc (infile)) != EOF || !(ferror (infile) | feo
[all...]
/freebsd-9.3-release/contrib/cvs/
H A Dmissing297 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
303 }' $infile`
305 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/diff/src/
H A Ddiff3.c1608 output_diff3_merge (FILE *infile, FILE *outputfile, struct diff3_block *diff,
1645 c = getc (infile);
1648 if (ferror (infile))
1650 else if (feof (infile))
1700 while ((c = getc (infile)) != '\n')
1703 if (ferror (infile))
1705 else if (feof (infile))
1714 while ((c = getc (infile)) != EOF || !(ferror (infile) | feof (infile)))
1604 output_diff3_merge(FILE *infile, FILE *outputfile, struct diff3_block *diff, int const mapping[3], int const rev_mapping[3], char const *file0, char const *file1, char const *file2) argument
[all...]
H A Dsdiff.c352 FILE *infile;
359 lf_init (struct line_filter *lf, FILE *infile)
361 lf->infile = infile;
370 size_t s = ck_fread (lf->buffer, SDIFF_BUFSIZE, lf->infile);
378 /* Advance LINES on LF's infile, copying lines to OUTFILE */
404 /* Advance LINES on LF's infile without doing output */
351 FILE *infile; member in struct:line_filter
358 lf_init(struct line_filter *lf, FILE *infile) argument
/freebsd-9.3-release/contrib/gcc/
H A Dgcc.c3123 struct infile
3134 static struct infile *infiles;
4129 infiles = XNEWVEC (struct infile, n_infiles + 1);
3105 struct infile struct
H A Dread-rtl.c99 FILE *infile; member in struct:macro_traverse_data
141 static void read_constants (FILE *infile, char *tmp_char);
142 static void read_conditions (FILE *infile, char *tmp_char);
184 fatal_with_file_and_line (FILE *infile, const char *msg, ...) argument
200 c = getc (infile);
220 fatal_expected_char (FILE *infile, int expected_c, int actual_c) argument
222 fatal_with_file_and_line (infile, "expected character `%c', found `%c'",
229 find_mode (const char *name, FILE *infile) argument
237 fatal_with_file_and_line (infile, "unknown mode `%s'", name);
255 find_code (const char *name, FILE *infile) argument
349 apply_mode_maps(rtx x, struct map_value *mode_maps, struct mapping *macro, int value, FILE *infile, const char **unknown) argument
424 apply_macro_to_rtx(rtx original, struct mapping *macro, int value, struct map_value *mode_maps, FILE *infile, const char **unknown_mode_attr) argument
620 add_mapping(struct macro_group *group, htab_t table, const char *name, FILE *infile) argument
827 read_skip_spaces(FILE *infile) argument
879 read_name(char *str, FILE *infile) argument
930 read_escape(FILE *infile) argument
983 read_quoted_string(FILE *infile) argument
1011 read_braced_string(FILE *infile) argument
1050 read_string(FILE *infile, int star_if_braced) argument
1150 read_constants(FILE *infile, char *tmp_char) argument
1228 read_conditions(FILE *infile, char *tmp_char) argument
1265 validate_const_int(FILE *infile, const char *string) argument
1288 find_macro(struct macro_group *group, const char *name, FILE *infile) argument
1309 read_mapping(struct macro_group *group, htab_t table, FILE *infile) argument
1364 check_code_macro(struct mapping *macro, FILE *infile) argument
1389 read_rtx(FILE *infile, rtx *x, int *lineno) argument
1454 read_rtx_1(FILE *infile, struct map_value **mode_maps) argument
1520 check_code_macro (read_mapping (&codes, codes.macros, infile), infile); local
1720 read_rtx_variadic(FILE *infile, struct map_value **mode_maps, rtx form) argument
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dpex-msdos.c167 char *infile; local
197 infile = "";
202 infile = ms->files[inindex];
219 + strlen (infile)
227 infile,
/freebsd-9.3-release/contrib/groff/src/roff/groff/
H A Dpipeline.c364 int infile = 0; local
390 f = open(tmpfiles[infile], O_RDONLY|O_BINARY, 0666);
433 infile = 1 - infile;
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dippool.c300 int loadpoolfile(argc, argv, infile)
302 char *argv[], *infile;
306 infile = optarg;
340 if (ippool_parsefile(fd, infile, ioctl) != 0)
/freebsd-9.3-release/contrib/less/
H A Dlesskey.c209 char *infile = NULL; variable
332 infile = *argv;
334 infile = homefile(DEF_LESSKEYINFILE);
805 if (strcmp(infile, "-") == 0)
807 else if ((desc = fopen(infile, "r")) == NULL)
810 perror(infile);
812 fprintf(stderr, "Cannot open %s\n", infile);
/freebsd-9.3-release/contrib/libpcap/tests/
H A Dfiltertest.c165 char *infile; local
179 infile = NULL;
197 infile = optarg;
241 if (infile)
242 cmdbuf = read_infile(infile);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenAction.cpp58 const std::string &infile,
70 Gen(CreateLLVMCodeGen(Diags, infile, compopts, targetopts, C)),
53 BackendConsumer(BackendAction action, DiagnosticsEngine &_Diags, const CodeGenOptions &compopts, const TargetOptions &targetopts, const LangOptions &langopts, bool TimePasses, const std::string &infile, llvm::Module *LinkModule, raw_ostream *OS, LLVMContext &C) argument
/freebsd-9.3-release/contrib/lukemftpd/src/
H A Dconf.c151 const char *infile; local
163 infile = conffilename(_NAME_FTPDCONF);
164 if ((f = fopen(infile, "r")) == NULL)
221 infile, (int)line, errbuf); \
251 infile, (int)line, gai_strerror(error));
260 infile, (int)line, arg);
270 infile, (int)line, res->ai_family, arg);
295 infile, (int)line, arg);
306 infile, (int)line, word);
426 infile, (in
[all...]
/freebsd-9.3-release/contrib/ntp/
H A Dmissing295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/ntp/sntp/libevent/build-aux/
H A Dmissing305 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
311 }' $infile`
313 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/ntp/sntp/
H A Dmissing295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/ofed/libibcm/config/
H A Dmissing295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/ofed/librdmacm/config/
H A Dmissing295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/one-true-awk/
H A Dlib.c35 FILE *infile = NULL; variable
104 infile = stdin; /* no filenames, so use stdin */
128 while (argno < *ARGC || infile == stdin) {
130 if (infile == NULL) { /* have to open a new file */
144 infile = stdin;
145 else if ((infile = fopen(file, "r")) == NULL)
149 c = readrec(&buf, &bufsize, infile);
168 if (infile != stdin)
169 fclose(infile);
170 infile
[all...]
/freebsd-9.3-release/contrib/openbsm/config/
H A Dmissing295 infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
296 file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
298 test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
/freebsd-9.3-release/contrib/opie/
H A Dconfigure5078 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
5155 # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".

Completed in 249 milliseconds

1234