Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 425) sorted by relevance

12345678910>>...17

/toolchain/binutils/binutils-2.25/libiberty/
Dpex-msdos.c49 const char *files[PEX_MSDOS_FILE_COUNT]; member
96 ret->files[i] = NULL; in pex_init()
116 if (ms->files[i] == NULL) in pex_msdos_open()
118 ms->files[i] = xstrdup (name); in pex_msdos_open()
133 if (fd < 0 || fd >= PEX_MSDOS_FILE_COUNT || ms->files[fd] == NULL) in pex_msdos_fdindex()
149 free (ms->files[fdindex]); in pex_msdos_close()
150 ms->files[fdindex] = NULL; in pex_msdos_close()
202 infile = ms->files[inindex]; in pex_msdos_exec_child()
213 outfile = ms->files[outindex]; in pex_msdos_exec_child()
313 free (msdos->files[i]); in pex_msdos_cleanup()
/toolchain/binutils/binutils-2.25/gas/
Ddwarf2dbg.c217 static struct file_entry *files; variable
545 if (! files[last_used].dir in get_filenum()
546 && filename_cmp (filename, files[last_used].filename) == 0) in get_filenum()
548 if (files[last_used].dir in get_filenum()
549 && filename_ncmp (filename, dirs[files[last_used].dir], in get_filenum()
553 files[last_used].filename) == 0) in get_filenum()
598 if (files[i].dir == dir in get_filenum()
599 && files[i].filename in get_filenum()
600 && filename_cmp (file, files[i].filename) == 0) in get_filenum()
615 files = (struct file_entry *) in get_filenum()
[all …]
Dconfig.in203 /* Define if environ is not declared in system header files. */
206 /* Define if errno is not declared in system header files. */
209 /* Define if ffs is not declared in system header files. */
212 /* Define if free is not declared in system header files. */
215 /* Define if malloc is not declared in system header files. */
218 /* Define if sbrk is not declared in system header files. */
221 /* Define if strstr is not declared in system header files. */
277 /* Define to 1 if you have the ANSI C header files. */
310 /* Use b modifier when opening binary files? */
366 /* Define for large files, on AIX-style hosts. */
/toolchain/binutils/binutils-2.25/gas/doc/
DMakefile.in556 while read files; do \
557 test -z "$$files" || { \
558 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
559 $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
565 files=`{ for i in $$list; do echo "$$i"; done; \
570 test -z "$$files" || { \
571 echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
572 cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
645 while read files; do \
646 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
[all …]
/toolchain/binutils/binutils-2.25/gprof/
DMakefile.in419 while read type dir files; do \
421 test -z "$$files" || { \
422 …L) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindi…
423 …L) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindi…
430 files=`for p in $$list; do echo "$$p"; done | \
434 echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
435 cd "$(DESTDIR)$(bindir)" && rm -f $$files
670 while read files; do \
671 test -z "$$files" || { \
672 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
[all …]
DREADME22 o Test-coverage support (similar to Sun tcov program): source files
162 files. If "symspec" is specified, print output only
170 source files.
173 -Afoobar Prints annotated source for files
244 Print information about the profile files that
264 for source files. The argument "dirs" is a colon
266 searches for source files relative to the current
288 -y --separate-files
290 Normally, gprof prints annotated source files
296 be taken if a program consists of files that have
[all …]
DTODO2 - add support for prof file format so that prof files can be displayed
10 + ensure "cc -pg" produces good files under OSF/1 v3.0
57 + split into files according to abstract objects that are manipulated
67 read new gmon.out style files. The idea being that everyone
/toolchain/binutils/binutils-2.25/binutils/doc/
DMakefile.in532 while read files; do \
533 test -z "$$files" || { \
534 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
535 $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
541 files=`{ for i in $$list; do echo "$$i"; done; \
546 test -z "$$files" || { \
547 echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
548 cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
622 while read files; do \
623 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
[all …]
Dbinutils.texi36 * dlltool: (binutils)dlltool. Create files needed to build and use DLLs.
38 * nm: (binutils)nm. List symbols from object files.
39 * objcopy: (binutils)objcopy. Copy and translate object files.
40 * objdump: (binutils)objdump. Display information from object files.
42 * readelf: (binutils)readelf. Display the contents of ELF format files.
44 * strings: (binutils)strings. List printable strings from files.
46 * elfedit: (binutils)elfedit. Update the ELF header of ELF files.
91 List symbols from object files
94 Copy and translate object files
97 Display information from object files
[all …]
/toolchain/binutils/binutils-2.25/binutils/
Dar.c175 map_over_members (bfd *arch, void (*function)(bfd *), char **files, int count) in map_over_members() argument
199 for (; count > 0; files++, count--) in map_over_members()
232 && !FILENAME_CMP (normalize (*files, arch), filename)) in map_over_members()
257 fprintf (stderr, _("no entry %s in archive\n"), *files); in map_over_members()
678 char **files; in main() local
794 files = (file_count > 0) ? argv + arg_index : NULL; in main()
797 files == NULL ? (char *) NULL : files[0]); in main()
805 map_over_members (arch, print_descr, files, file_count); in main()
809 map_over_members (arch, print_contents, files, file_count); in main()
813 map_over_members (arch, extract_file, files, file_count); in main()
[all …]
DREADME4 with binary files, either object files or executables. These tools
9 pair of libraries (bfd and opcodes) and a common set of header files
12 There are README and NEWS files in most of the program sub-directories
19 Copyright years on binutils source files may be listed using range
31 various files and sub-directories. Most of the files in the top
40 make install # copies the programs files into /usr/local/bin
187 want input files to gas and command line switches used. The inputs to
188 gas are _NOT_ .c or .i files, but rather .s files. If your original
191 usual options you use. The reason we don't want C files is that we
197 In the case of a ld problem, the input files are .o, .a and .so files,
[all …]
DNEWS127 object files rather than the files themselves and which contain a
153 for binary files is done now via bfd itself. The endianess problems
154 for different hosts are solved. Dumps of .res files can now be
182 code in regular object files was generated by gcc -msecure-plt. The old PLT
196 * gprof now allows input files to have histogram records for
293 global symbols, and also to specify files containing lists of such symbols.
339 * New program: readelf. This displays the contents of ELF format files,
360 files as used on Windows 95 and Windows NT.
417 generating plain binary files.
426 listing, for a more useful listing of relocatable files.
[all …]
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfweak/
Delfweak.exp286 set files ""
288 set files "$files $tmpdir/$obj"
291 if {![ld_simple_link $CC $tmpdir/$libname.so "$shared $files"]} {
312 set files ""
314 set files "$files $tmpdir/$obj"
317 if {![ld_simple_link $CC $tmpdir/$execname "$flags $files"]} {
/toolchain/binutils/binutils-2.25/intl/
DREADME10 * The files COPYING.LIB-2.0 and COPYING.LIB-2.1 are redundant with the
13 * The files config.charset, ref-add.sin, ref-del.sin, os2compat.c,
21 direct patches for these files to gcc-patches@gcc.gnu.org.
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/rx/
Dmake-d26 push (@files, $f);
30 for $f (@files) {
/toolchain/binutils/binutils-2.25/gold/
Ddwp.cc120 read_executable(File_list* files);
130 verify(const File_list& files);
195 verify_dwo_list(unsigned int, const File_list& files);
199 sized_verify_dwo_list(unsigned int, const File_list& files);
698 get_dwo_names(File_list* files) in get_dwo_names() argument
700 this->files_ = files; in get_dwo_names()
841 Dwo_file::read_executable(File_list* files) in read_executable() argument
879 dwarf_reader.get_dwo_names(files); in read_executable()
986 Dwo_file::verify(const File_list& files) in verify() argument
1020 return this->verify_dwo_list(debug_cu_index, files); in verify()
[all …]
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/windres/
DREADME3 The files *.rc are hand-edited or copied from elsewhere.
5 The script msupdate is used to generate the *.rsd files, which are
27 MSVC-generated *.rsd files are generated for that.
/toolchain/binutils/binutils-2.25/gas/testsuite/
DChangeLog-2007707 * add_test.d and add_test.s: New files
708 * and_test.d and and_test.s: New files
709 * ash_test.d and ash_test.s: New files
710 * bal_test.d and bal_test.s: New files
711 * bcc_test.d and bcc_test.s: New files
712 * beq0_test.d and beq0_test.s: New files
713 * cbitb_test.d and cbitb_test.s: New files
714 * cbitw_test.d and cbitw_test.s: New files
715 * cinv_test.d and cinv_test.s: New files
716 * cmp_test.d and cmp_test.s: New files
[all …]
/toolchain/binutils/binutils-2.25/ld/emultempl/
DREADME1 The files in this directory are sourced by genscripts.sh, after
3 C source files that contain jump tables for each emulation.
/toolchain/binutils/binutils-2.25/ld/scripttempl/
DREADME1 The files in this directory are linker script templates.
4 files for default, -r, -Ur, -n, -N.
/toolchain/binutils/binutils-2.25/bfd/doc/
Dbfdint.texi56 * BFD generated files:: BFD generated files
68 object files, executables, archive files, and core files in any format.
134 The third use is to link object files. There is only one object file
142 structures, in the normal case where all the input files and output file
157 into the generic form when reading files, and out of the generic form
158 when writing files.
193 Archive files do not have any sections or symbols. Instead, BFD
229 with object files, and particular problems caused by information loss
276 together the files for all targets.
281 which may or may not be declared in system header files. Warnings about
[all …]
DMakefile.in648 while read files; do \
649 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
650 $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
673 while read files; do \
674 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
675 $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
697 while read files; do \
698 echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
699 $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
722 while read files; do \
[all …]
/toolchain/binutils/binutils-2.25/include/nlm/
DChangeLog18 the GPL notices in the following files:
69 NetWare files.
75 * i386-ext.h, sparc32-ext.h: New header files to define
108 * (common.h, external.h, internal.h): New files for NLM/NetWare
/toolchain/binutils/binutils-2.25/cpu/
Dsh.opc27 appropriate in .cpu files, so it resides here. This especially applies
30 so .cpu files provide the general framework and .opc files handle the
/toolchain/binutils/binutils-2.25/config/
Dgettext-sister.m436 # Look for .po and .gmo files in the source directory.
40 # If there aren't any .gmo files the shell will give us the
68 dnl Set up some additional variables which our po/Make-in files

12345678910>>...17