• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/cxxfilt-11/cxxfilt/binutils/

Lines Matching +defs:temp +defs:file +defs:name

1 /* nm.c -- Describe symbol table of a rel file.
6 This file is part of GNU Binutils.
62 #define SYM_NAME(sym) (sym->sinfo->name)
92 /* Print the name of an object file given on the command line. */
95 /* Print the name of an archive file given on the command line. */
98 /* Print the name of an archive member file. */
101 /* Print the name of the file (and archive, if there is one)
158 static int filename_per_file = 0; /* Once per file, on its own line. */
204 {"print-file-name", no_argument, 0, 'o'},
225 fprintf (stream, _("Usage: %s [option(s)] [file(s)]\n"), program_name);
226 fprintf (stream, _(" List symbols in [file(s)] (a.out by default).\n"));
229 -A, --print-file-name Print name of the input file before every symbol\n\
352 /* Print symbol name NAME, read from ABFD, with printf format FORMAT,
356 print_symname (const char *format, const char *name, bfd *abfd)
358 if (do_demangle && *name)
360 char *res = demangle (abfd, name);
367 printf (format, name);
390 if (thesym->name != (char *) NULL)
392 print_symname ("%s", thesym->name, abfd);
569 tries to sort file names before other symbols with the same value.
570 That will make the file name have a zero size, which will make
571 sort_symbols_by_size choose the non file name symbol, leading to
610 information than the file name, so sort them out first. */
622 /* We use a heuristic for the file name. It may not work on non
704 asymbol *temp;
744 temp = store_sym;
746 store_next = temp;
1104 display_archive (bfd *file)
1110 format->print_archive_filename (bfd_get_filename (file));
1113 print_symdef_entry (file);
1119 arfile = bfd_openr_next_archived_file (file, arfile);
1124 bfd_fatal (bfd_get_filename (file));
1134 format->print_archive_member (bfd_get_filename (file),
1136 display_rel_file (arfile, file);
1169 bfd *file;
1175 file = bfd_openr (filename, target);
1176 if (file == NULL)
1182 if (bfd_check_format (file, bfd_archive))
1184 display_archive (file);
1186 else if (bfd_check_format_matches (file, bfd_object, &matching))
1190 bfd_sprintf_vma (file, buf, (bfd_vma) -1);
1193 display_rel_file (file, NULL);
1206 if (!bfd_close (file))
1217 once at the start of processing each file of the appropriate type.
1223 /* Print the name of an object file given on the command line. */
1255 /* Print the name of an archive file given on the command line. */
1275 /* Print the name of an archive member file. */
1308 /* Print the name of the file (and archive, if there is one)
1464 printf("| |%s", info->elfinfo->symbol.section->name);