Searched refs:symlength (Results 1 – 6 of 6) sorted by relevance
/toolchain/binutils/binutils-2.27/bfd/ |
D | nlm32-i386.c | 334 unsigned char symlength; /* Length of symbol name. */ in nlm_i386_read_import() local 337 if (bfd_bread (& symlength, (bfd_size_type) sizeof (symlength), abfd) in nlm_i386_read_import() 338 != sizeof (symlength)) in nlm_i386_read_import() 341 name = bfd_alloc (abfd, (bfd_size_type) symlength + 1); in nlm_i386_read_import() 344 if (bfd_bread (name, (bfd_size_type) symlength, abfd) != symlength) in nlm_i386_read_import() 346 name[symlength] = '\0'; in nlm_i386_read_import()
|
D | nlm32-sparc.c | 213 unsigned char symlength; /* Length of symbol name. */ in nlm_sparc_read_import() local 224 if (bfd_bread (& symlength, (bfd_size_type) sizeof (symlength), abfd) in nlm_sparc_read_import() 225 != sizeof (symlength)) in nlm_sparc_read_import() 228 name = bfd_alloc (abfd, (bfd_size_type) symlength + 1); in nlm_sparc_read_import() 233 if (bfd_bread (name, (bfd_size_type) symlength, abfd) != symlength) in nlm_sparc_read_import() 235 name[symlength] = '\0'; in nlm_sparc_read_import()
|
D | nlm32-alpha.c | 604 unsigned char symlength; /* Length of symbol name. */ in nlm_alpha_read_import() local 608 if (bfd_bread (& symlength, (bfd_size_type) sizeof (symlength), abfd) in nlm_alpha_read_import() 609 != sizeof (symlength)) in nlm_alpha_read_import() 612 name = bfd_alloc (abfd, (bfd_size_type) symlength + 1); in nlm_alpha_read_import() 615 if (bfd_bread (name, (bfd_size_type) symlength, abfd) != symlength) in nlm_alpha_read_import() 617 name[symlength] = '\0'; in nlm_alpha_read_import()
|
D | nlm32-ppc.c | 617 unsigned char symlength; /* Length of symbol name. */ in nlm_powerpc_read_import() local 620 if (bfd_bread (& symlength, (bfd_size_type) sizeof (symlength), abfd) in nlm_powerpc_read_import() 621 != sizeof (symlength)) in nlm_powerpc_read_import() 624 name = bfd_alloc (abfd, (bfd_size_type) symlength + 1); in nlm_powerpc_read_import() 627 if (bfd_bread (name, (bfd_size_type) symlength, abfd) != symlength) in nlm_powerpc_read_import() 629 name[symlength] = '\0'; in nlm_powerpc_read_import()
|
D | nlmcode.h | 900 unsigned char symlength; /* Symbol length read into here. */ in nlm_slurp_symbol_table() local 943 amt = sizeof (symlength); in nlm_slurp_symbol_table() 944 if (bfd_bread ((void *) &symlength, amt, abfd) != amt) in nlm_slurp_symbol_table() 946 amt = symlength; in nlm_slurp_symbol_table() 954 ((char *) (sym->symbol.name))[symlength] = '\0'; in nlm_slurp_symbol_table() 1001 amt = sizeof (symlength); in nlm_slurp_symbol_table() 1002 if (bfd_bread ((void *) &symlength, amt, abfd) != amt) in nlm_slurp_symbol_table() 1004 amt = symlength; in nlm_slurp_symbol_table() 1012 ((char *) (sym->symbol.name))[symlength] = '\0'; in nlm_slurp_symbol_table()
|
D | ChangeLog-9193 | 1873 (nlm_slurp_symbol_table): Make symlength unsigned. Read debugging
|