Home
last modified time | relevance | path

Searched refs:plugins_ (Results 1 – 5 of 5) sorted by relevance

/toolchain/binutils/binutils-2.25/gold/
Dplugin.h131 : plugins_(), objects_(), deferred_layout_objects_(), input_file_(NULL), in Plugin_manager()
139 { this->current_ = plugins_.end(); } in Plugin_manager()
146 { this->plugins_.push_back(new Plugin(filename)); } in add_plugin()
152 Plugin* last = this->plugins_.back(); in add_plugin_option()
209 gold_assert(this->current_ != plugins_.end()); in set_claim_file_handler()
217 gold_assert(this->current_ != plugins_.end()); in set_all_symbols_read_handler()
225 gold_assert(this->current_ != plugins_.end()); in set_cleanup_handler()
335 Plugin_list plugins_; variable
Dplugin.cc420 for (Plugin_list::iterator p = this->plugins_.begin(); in ~Plugin_manager()
421 p != this->plugins_.end(); in ~Plugin_manager()
424 this->plugins_.clear(); in ~Plugin_manager()
439 for (this->current_ = this->plugins_.begin(); in load_plugins()
440 this->current_ != this->plugins_.end(); in load_plugins()
469 for (this->current_ = this->plugins_.begin(); in claim_file()
470 this->current_ != this->plugins_.end(); in claim_file()
536 for (this->current_ = this->plugins_.begin(); in all_symbols_read()
537 this->current_ != this->plugins_.end(); in all_symbols_read()
714 for (this->current_ = this->plugins_.begin(); in cleanup()
[all …]
Doptions.cc919 plugins_(NULL), in General_options()
995 if (this->plugins_ == NULL) in add_plugin()
996 this->plugins_ = new Plugin_manager(*this); in add_plugin()
997 this->plugins_->add_plugin(filename); in add_plugin()
1005 if (this->plugins_ == NULL) in add_plugin_option()
1007 this->plugins_->add_plugin_option(arg); in add_plugin_option()
Doptions.h1482 { return this->plugins_ != NULL; } in has_plugins()
1487 { return this->plugins_; } in plugins()
1647 Plugin_manager* plugins_; variable
DChangeLog14612 (General_options::General_options): Initialize plugins_ field.
14619 (General_options::plugins_): New field.