Home | History | Annotate | Download | only in gc

Lines Matching defs:list_

28 ReferenceQueue::ReferenceQueue(Mutex* lock) : lock_(lock), list_(nullptr) {
48 list_ = ref;
50 mirror::Reference* head = list_->GetPendingNext();
58 list_->SetPendingNext<true>(ref);
60 list_->SetPendingNext<false>(ref);
66 mirror::Reference* head = list_->GetPendingNext();
71 if (list_ == head) {
72 ref = list_;
73 list_ = nullptr;
77 list_->SetPendingNext<true>(next);
79 list_->SetPendingNext<false>(next);
92 mirror::Reference* cur = list_;
93 os << "Reference starting at list_=" << list_ << "\n";
154 mirror::Reference* const head = list_;
166 if (list_ != nullptr) {
167 list_ = down_cast<mirror::Reference*>(callback(list_, arg));