Home | History | Annotate | Download | only in libiberty

Lines Matching refs:sobj

189 simple_object_find_sections (simple_object_read *sobj,
194 return sobj->functions->find_sections (sobj, pfn, data, err);
232 simple_object_find_section (simple_object_read *sobj, const char *name,
243 *errmsg = simple_object_find_sections (sobj, find_one_section,
255 simple_object_fetch_attributes (simple_object_read *sobj, const char **errmsg,
261 data = sobj->functions->fetch_attributes (sobj, errmsg, err);
265 ret->functions = sobj->functions;
273 simple_object_release_read (simple_object_read *sobj)
275 sobj->functions->release_read (sobj->data);
276 XDELETE (sobj);
328 simple_object_write_create_section (simple_object_write *sobj, const char *name,
342 if (sobj->last_section == NULL)
344 sobj->sections = ret;
345 sobj->last_section = ret;
349 sobj->last_section->next = ret;
350 sobj->last_section = ret;
359 simple_object_write_add_data (simple_object_write *sobj ATTRIBUTE_UNUSED,
400 simple_object_write_to_file (simple_object_write *sobj, int descriptor,
403 return sobj->functions->write_to_file (sobj, descriptor, err);
409 simple_object_release_write (simple_object_write *sobj)
413 free (sobj->segment_name);
415 section = sobj->sections;
439 sobj->functions->release_write (sobj->data);
440 XDELETE (sobj);