Home
last modified time | relevance | path

Searched refs:current_ (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.25/gold/
Ddescriptors.cc67 stack_top_(-1), current_(0), limit_(8192 - 16) in Descriptors()
169 ++this->current_; in open()
170 if (this->current_ >= this->limit_) in open()
183 this->limit_ = this->current_ - 16; in open()
205 || (this->current_ > this->limit_ && !pod->is_write)) in release()
210 --this->current_; in release()
248 --this->current_; in close_some_descriptor()
Dcref.cc47 : objects_(), archives_(), current_(&this->objects_) in Cref_inputs()
121 Objects* current_; member in gold::Cref_inputs
129 this->current_->push_back(object); in add_object()
137 gold_assert(this->current_ == &this->objects_); in add_archive_start()
145 this->current_ = this->archives_[archive->name()].objects; in add_archive_start()
153 gold_assert(this->current_ != &this->objects_); in add_archive_stop()
154 this->current_ = &this->objects_; in add_archive_stop()
Dplugin.h139 { this->current_ = plugins_.end(); } in Plugin_manager()
209 gold_assert(this->current_ != plugins_.end()); in set_claim_file_handler()
210 (*this->current_)->set_claim_file_handler(handler); in set_claim_file_handler()
217 gold_assert(this->current_ != plugins_.end()); in set_all_symbols_read_handler()
218 (*this->current_)->set_all_symbols_read_handler(handler); in set_all_symbols_read_handler()
225 gold_assert(this->current_ != plugins_.end()); in set_cleanup_handler()
226 (*this->current_)->set_cleanup_handler(handler); in set_cleanup_handler()
337 Plugin_list::iterator current_; variable
Dplugin.cc439 for (this->current_ = this->plugins_.begin(); in load_plugins()
440 this->current_ != this->plugins_.end(); in load_plugins()
441 ++this->current_) in load_plugins()
442 (*this->current_)->load(); in load_plugins()
469 for (this->current_ = this->plugins_.begin(); in claim_file()
470 this->current_ != this->plugins_.end(); in claim_file()
471 ++this->current_) in claim_file()
473 if ((*this->current_)->claim_file(&this->plugin_input_file_)) in claim_file()
536 for (this->current_ = this->plugins_.begin(); in all_symbols_read()
537 this->current_ != this->plugins_.end(); in all_symbols_read()
[all …]
Ddescriptors.h92 int current_; variable
Dscript.cc219 current_(input_string), mode_(LINKER_SCRIPT), in Lex()
350 const char* current_; member in gold::Lex
875 this->token_ = this->get_token(&this->current_); in next_token()
880 && (static_cast<size_t>(this->current_ - this->input_string_) in next_token()
882 this->token_ = this->make_invalid_token(this->current_); in next_token()