Home
last modified time | relevance | path

Searched refs:input_name (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Dfini.c248 char *input_name; in main() local
275 input_name = argv[1]; in main()
279 in = fopen (input_name, "r"); in main()
282 fprintf (stderr, "Cannot open \"%s\"\n", input_name); in main()
376 fprintf (stderr, "%s: %s%s%s is 31+%d chars long\n", input_name, in main()
395 fprintf (stderr, "%s: \"%s\" precedes \"%s\"\n", input_name, in main()
419 fprintf (stderr, "%s: extraneous \"%s\"\n", input_name, buf); in main()
/openbsd-src/gnu/usr.bin/texinfo/makeinfo/
H A Dfiles.c504 expand_filename (char *filename, char *input_name) in expand_filename()
519 filename = filename_non_directory (input_name); in expand_filename()
540 if (IS_ABSOLUTE (input_name)) in expand_filename()
545 i = strlen (input_name) - 1; in expand_filename()
547 result = xmalloc (1 + strlen (input_name) + strlen (filename)); in expand_filename()
548 strcpy (result, input_name); in expand_filename()
501 expand_filename(char * filename,char * input_name) expand_filename() argument
H A Dfiles.h44 extern char *expand_filename (char *filename, char *input_name);
/openbsd-src/gnu/gcc/gcc/
H A Dtoplev.c679 output_file_directive (FILE *asm_file, const char *input_name) in output_file_directive() argument
684 if (input_name == NULL) in output_file_directive()
685 input_name = "<stdin>"; in output_file_directive()
687 len = strlen (input_name); in output_file_directive()
688 na = input_name + len; in output_file_directive()
691 while (na > input_name) in output_file_directive()
H A Dgcov.c1424 make_gcov_file_name (const char *input_name, const char *src_name) in make_gcov_file_name() argument
1427 char *name = XNEWVEC (char, strlen (src_name) + strlen (input_name) + 10); in make_gcov_file_name()
1430 if (flag_long_names && strcmp (src_name, input_name)) in make_gcov_file_name()
1433 cptr = flag_preserve_paths ? NULL : strrchr (input_name, '/'); in make_gcov_file_name()
1434 strcat (name, cptr ? cptr + 1 : input_name); in make_gcov_file_name()
H A Dmips-tfile.c652 static const char *input_name; variable
1501 static const char *input_name = "stdin"; /* name of input file */ variable
2636 pfatal_with_name (input_name); in read_line()
4343 input_name, (long) orig_file_header.f_nsyms, (long) sizeof (HDRR)); in copy_object()
4348 pfatal_with_name (input_name); in copy_object()
4876 input_name = argv[optind]; in main()
4923 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number); in pfatal_with_name()
4951 progname, input_name, line_number, indx, str, max, prog_line); in out_of_bounds()
5430 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number); in fatal()
5452 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number); in error()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dmips-tfile.c649 static const char *input_name; variable
1576 static const char *input_name = "stdin"; /* name of input file */ variable
2738 pfatal_with_name (input_name); in read_line()
4479 input_name, (long) orig_file_header.f_nsyms, (long) sizeof (HDRR)); in copy_object()
4484 pfatal_with_name (input_name); in copy_object()
4998 input_name = argv[optind];
5047 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number);
5076 progname, input_name, line_number, indx, str, max, prog_line);
5568 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number); in fatal()
5590 fprintf (stderr, "%s, %s:%ld ", progname, input_name, line_number); in error()
H A Dtoplev.c1832 output_file_directive (asm_file, input_name) in output_file_directive() argument
1834 const char *input_name;
1836 int len = strlen (input_name);
1837 const char *na = input_name + len;
1840 while (na > input_name)
H A DChangeLog.17228 (progname, input_name): Apply `const' keyword to a char*.