Searched defs:list_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/
H A Dreference_queue.h78 return list_ == nullptr;
81 list_ = nullptr;
84 return list_;
86 // Visits list_, currently only used for the mark compact GC.
96 mirror::Reference* list_; member in class:art::gc::ReferenceQueue
H A Dreference_queue.cc28 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_
93 os << "Reference starting at list_=" << list_ << "\\n"; local
[all...]
/art/runtime/
H A Ddex_file.h138 MapItem list_[1]; member in struct:art::DexFile::MapList
243 return this->list_[idx];
258 TypeItem list_[1]; // elements of the list member in class:art::DexFile::TypeList
356 AnnotationSetRefItem list_[1]; member in struct:art::DexFile::AnnotationSetRefList

Completed in 216 milliseconds