Lines Matching defs:files
62 // List of .dwo files to process.
105 // debug section identifies a set of .dwo files to read.
117 // Read the input executable file and extract the list of .dwo files
120 read_executable(File_list* files);
126 // Verify a .dwp file given a list of .dwo files referenced by the
130 verify(const File_list& files);
192 // against the list of .dwo files referenced by the corresponding
195 verify_dwo_list(unsigned int, const File_list& files);
199 sized_verify_dwo_list(unsigned int, const File_list& files);
301 // input files from a plugin.
698 get_dwo_names(File_list* files)
700 this->files_ = files;
710 // The list of files to populate.
837 // Read the input executable file and extract the list of .dwo files
841 Dwo_file::read_executable(File_list* files)
879 dwarf_reader.get_dwo_names(files);
981 // Verify a .dwp file given a list of .dwo files referenced by the
986 Dwo_file::verify(const File_list& files)
1020 return this->verify_dwo_list(debug_cu_index, files);
1153 // and because in normal use, dwp is not expected to read .dwp files
1268 // against the list of .dwo files referenced by the corresponding
1272 Dwo_file::verify_dwo_list(unsigned int shndx, const File_list& files)
1275 return this->sized_verify_dwo_list<true>(shndx, files);
1277 return this->sized_verify_dwo_list<false>(shndx, files);
1282 Dwo_file::sized_verify_dwo_list(unsigned int shndx, const File_list& files)
1295 // and because in normal use, dwp is not expected to read .dwp files
1326 for (File_list::const_iterator f = files.begin(); f != files.end(); ++f)
1355 gold_info(_("Found %d missing .dwo files"), nmissing);
2315 fprintf(fd, _(" -e EXE, --exec EXE Get list of dwo files from EXE"
2376 File_list files;
2416 // Get list of .dwo files from the executable.
2420 exe_file.read_executable(&files);
2423 // Add any additional files listed on command line.
2425 files.push_back(Dwo_file_entry(0, argv[i]));
2427 if (exe_filename == NULL && files.empty())
2428 gold_fatal(_("no input files and no executable specified"));
2430 // If there are no DWO files, there is nothing to do.
2431 if (files.empty())
2436 // Get list of DWO files in the DWP file and compare with
2439 bool ok = dwp_file.verify(files);
2445 for (File_list::const_iterator f = files.begin(); f != files.end(); ++f)