Lines Matching refs:string_buffer
468 char *string_buffer; in init_import_symbols() local
518 string_buffer = (char *) xmalloc (string_table_size); in init_import_symbols()
519 bfd_get_section_contents (objfile->obfd, text_section, string_buffer, in init_import_symbols()
542 = (char *) obstack_alloc (&objfile->objfile_obstack, strlen (string_buffer + buffer[i].name) + 1); in init_import_symbols()
543 strcpy (objfile->import_list[k], string_buffer + buffer[i].name); in init_import_symbols()
562 … = (char *) obstack_alloc (&objfile->objfile_obstack, strlen (string_buffer + buffer[i].name) + 1); in init_import_symbols()
563 strcpy (objfile->import_list[k], string_buffer + buffer[i].name); in init_import_symbols()
571 xfree (string_buffer); in init_import_symbols()
588 char *string_buffer; in init_export_symbols() local
641 string_buffer = (char *) xmalloc (string_table_size); in init_export_symbols()
642 bfd_get_section_contents (objfile->obfd, text_section, string_buffer, in init_export_symbols()
665 = (char *) obstack_alloc (&objfile->objfile_obstack, strlen (string_buffer + buffer[i].name) + 1); in init_export_symbols()
666 strcpy (objfile->export_list[k].name, string_buffer + buffer[i].name); in init_export_symbols()
689 … = (char *) obstack_alloc (&objfile->objfile_obstack, strlen (string_buffer + buffer[i].name) + 1); in init_export_symbols()
690 strcpy (objfile->export_list[k].name, string_buffer + buffer[i].name); in init_export_symbols()
702 xfree (string_buffer); in init_export_symbols()