Lines Matching refs:obj

425   for (Object_list::iterator obj = this->objects_.begin();  in ~Plugin_manager()  local
426 obj != this->objects_.end(); in ~Plugin_manager()
427 ++obj) in ~Plugin_manager()
428 delete *obj; in ~Plugin_manager()
484 Pluginobj* obj = this->make_plugin_object(handle); in claim_file() local
485 return obj; in claim_file()
686 Deferred_layout_list::iterator obj; in layout_deferred_objects() local
688 for (obj = this->deferred_layout_objects_.begin(); in layout_deferred_objects()
689 obj != this->deferred_layout_objects_.end(); in layout_deferred_objects()
690 ++obj) in layout_deferred_objects()
696 Task_lock_obj<Object> tl(dummy_task, *obj); in layout_deferred_objects()
697 (*obj)->layout_deferred_sections(this->layout_); in layout_deferred_objects()
731 Pluginobj* obj = make_sized_plugin_object(this->input_file_, in make_plugin_object() local
741 this->objects_.push_back(obj); in make_plugin_object()
742 return obj; in make_plugin_object()
752 Pluginobj* obj = this->object(handle)->pluginobj(); in get_input_file() local
753 if (obj == NULL) in get_input_file()
756 obj->lock(this->task_); in get_input_file()
757 file->name = obj->filename().c_str(); in get_input_file()
758 file->fd = obj->descriptor(); in get_input_file()
759 file->offset = obj->offset(); in get_input_file()
760 file->filesize = obj->filesize(); in get_input_file()
773 Pluginobj* obj = this->object(handle)->pluginobj(); in release_input_file() local
775 if (obj == NULL) in release_input_file()
778 obj->unlock(this->task_); in release_input_file()
788 Object* obj = this->object( in get_elf_object() local
792 if (obj == NULL in get_elf_object()
793 || obj->pluginobj() != NULL) in get_elf_object()
796 return obj; in get_elf_object()
818 Pluginobj* obj = this->object(handle)->pluginobj(); in get_view() local
819 if (obj == NULL) in get_view()
821 offset = obj->offset(); in get_view()
822 filesize = obj->filesize(); in get_view()
823 input_file = obj->input_file(); in get_view()
1471 Pluginobj* obj = parameters->options().plugins()->make_plugin_object( in add_symbols() local
1473 if (obj == NULL) in add_symbols()
1475 obj->store_incoming_symbols(nsyms, syms); in add_symbols()
1518 Object* obj = plugins->object( in get_symbols() local
1520 if (obj == NULL) in get_symbols()
1522 Pluginobj* plugin_obj = obj->pluginobj(); in get_symbols()
1537 Object* obj = plugins->object( in get_symbols_v2() local
1539 if (obj == NULL) in get_symbols_v2()
1541 Pluginobj* plugin_obj = obj->pluginobj(); in get_symbols_v2()
1616 Object* obj = parameters->options().plugins()->get_elf_object(handle); in get_input_section_count() local
1618 if (obj == NULL) in get_input_section_count()
1621 *count = obj->shnum(); in get_input_section_count()
1638 Object* obj in get_input_section_type() local
1641 if (obj == NULL) in get_input_section_type()
1644 *type = obj->section_type(section.shndx); in get_input_section_type()
1661 Object* obj in get_input_section_name() local
1664 if (obj == NULL) in get_input_section_name()
1668 gold_assert(obj->is_locked()); in get_input_section_name()
1670 const std::string section_name = obj->section_name(section.shndx); in get_input_section_name()
1690 Object* obj in get_input_section_contents() local
1693 if (obj == NULL) in get_input_section_contents()
1697 gold_assert(obj->is_locked()); in get_input_section_contents()
1701 = obj->section_contents(section.shndx, &plen, false); in get_input_section_contents()
1732 Object* obj = parameters->options().plugins()->get_elf_object( in update_section_order() local
1734 if (obj == NULL) in update_section_order()
1737 Section_id secn_id(obj, shndx); in update_section_order()
1801 Object* obj = parameters->options().plugins()->get_elf_object( in unique_segment_for_sections() local
1803 if (obj == NULL) in unique_segment_for_sections()
1806 Const_section_id secn_id(obj, shndx); in unique_segment_for_sections()
1820 Pluginobj* obj = NULL; in make_sized_plugin_object() local
1829 obj = new Sized_pluginobj<32, true>(input_file->filename(), in make_sized_plugin_object()
1838 obj = new Sized_pluginobj<32, false>(input_file->filename(), in make_sized_plugin_object()
1850 obj = new Sized_pluginobj<64, true>(input_file->filename(), in make_sized_plugin_object()
1859 obj = new Sized_pluginobj<64, false>(input_file->filename(), in make_sized_plugin_object()
1868 gold_assert(obj != NULL); in make_sized_plugin_object()
1869 return obj; in make_sized_plugin_object()