Searched refs:symbuf (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/binutils/bfd/
H A Dsrec.c303 char *symbuf = NULL; local
364 symbuf = bfd_malloc (alc + 1);
365 if (symbuf == NULL)
368 p = symbuf;
374 if ((bfd_size_type) (p - symbuf) >= alc)
379 n = bfd_realloc (symbuf, alc + 1);
382 p = n + (p - symbuf);
383 symbuf = n;
396 symname = bfd_alloc (abfd, (bfd_size_type) (p - symbuf));
399 strcpy (symname, symbuf);
[all...]
H A Dxcofflink.c198 coff_symbol_type *symbuf;
223 symbuf = bfd_zalloc (abfd, ldhdr.l_nsyms * sizeof (* symbuf));
224 if (symbuf == NULL)
230 for (; elsym < elsymend; elsym += bfd_xcoff_ldsymsz(abfd), symbuf++, psyms++)
236 symbuf->symbol.the_bfd = abfd;
239 symbuf->symbol.name = strings + ldsym._l._l_l._l_offset;
249 symbuf->symbol.name = c;
253 symbuf->symbol.section = bfd_abs_section_ptr;
255 symbuf
197 coff_symbol_type *symbuf; local
[all...]
H A Delflink.c6498 bfd_byte *symbuf;
6503 /* Number of symbols which fit in symbuf. */
6730 char symbuf [bufsz];
6768 memcpy (symbuf, sym, symlen);
6769 symbuf [symlen] = '\0';
6779 if ((resolve_section (symbuf, finfo->output_bfd->sections, result) != TRUE)
6780 && (resolve_symbol (symbuf, input_bfd, finfo, result, locsymcount) != TRUE))
6782 undefined_reference ("section", symbuf);
6788 if ((resolve_symbol (symbuf, input_bfd, finfo, result, locsymcount) != TRUE)
6789 && (resolve_section (symbuf, finf
6488 bfd_byte *symbuf; member in struct:elf_final_link_info
6720 char symbuf [bufsz]; local
[all...]
H A Delf-bfd.h1470 void *symbuf;
1468 void *symbuf; member in struct:elf_obj_tdata
H A Delf.c9043 ssymbuf1 = elf_tdata (bfd1)->symbuf;
9044 ssymbuf2 = elf_tdata (bfd2)->symbuf;
9054 elf_tdata (bfd1)->symbuf = ssymbuf1
9066 elf_tdata (bfd2)->symbuf = ssymbuf2
/freebsd-11-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_open.c803 void *cbuf, *symbuf, *strbuf; local
806 cbuf = symbuf = strbuf = NULL;
827 symbuf = ctf_data_alloc(symsect.cts_size);
828 if (symbuf == NULL) {
832 bcopy(symsect.cts_data, symbuf, symsect.cts_size);
833 ctf_data_protect(symbuf, symsect.cts_size);
834 symsect.cts_data = symbuf;
869 if (symbuf != NULL)
870 ctf_data_free(symbuf, symsect.cts_size);
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A Dsymbols.c46 struct symbuf { struct
390 struct symbuf *sy_buf;
750 struct symbuf *sy_buf;
809 struct symbuf *sy_buf;
877 struct symbuf *sy_buf;
983 struct symbuf *sy_buf;
1012 struct symbuf *sy_buf;
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddbxread.c765 static struct external_nlist symbuf[4096];
807 nbytes = sizeof (symbuf);
810 memcpy (symbuf, stabs_data + symbuf_read, nbytes);
814 count = sizeof (symbuf);
815 nbytes = bfd_bread (symbuf, count, sym_bfd);
830 if (count > sizeof (symbuf))
831 count = sizeof (symbuf);
832 nbytes = bfd_bread (symbuf, count, sym_bfd);
886 INTERNALIZE_SYMBOL (nlist, &symbuf[symbuf_idx], symfile_bfd);
1291 bufp = &symbuf[symbuf_id
758 static struct external_nlist symbuf[4096]; variable in typeref:struct:external_nlist
[all...]

Completed in 323 milliseconds