Searched refs:list_ (Results 1 - 10 of 10) sorted by relevance

/art/runtime/gc/
H A Dreference_queue.cc29 ReferenceQueue::ReferenceQueue(Mutex* lock) : lock_(lock), list_(nullptr) {
45 list_ = ref;
47 mirror::Reference* head = list_->GetPendingNext();
52 list_->SetPendingNext(ref);
57 mirror::Reference* ref = list_->GetPendingNext();
61 if (list_ == ref) {
62 list_ = nullptr;
65 list_->SetPendingNext(next);
109 mirror::Reference* cur = list_;
110 os << "Reference starting at list_ local
[all...]
H A Dreference_queue.h89 return list_ == nullptr;
92 list_ = nullptr;
95 return list_;
98 // Visits list_, currently only used for the mark compact GC.
108 mirror::Reference* list_; member in class:art::gc::ReferenceQueue
/art/runtime/
H A Dthread_list.cc101 return find(list_.begin(), list_.end(), thread) != list_.end();
105 for (const auto& thread : list_) {
120 for (const auto& thread : list_) {
235 os << "DALVIK THREADS (" << list_.size() << "):\n";
252 for (const auto& thread : list_) {
299 count = list_.size();
300 for (const auto& thread : list_) {
379 for (const auto& thread : list_) {
[all...]
H A Dthread_list.h149 return list_;
184 std::list<Thread*> list_ GUARDED_BY(Locks::thread_list_lock_);
186 // Ongoing suspend all requests, used to ensure threads added to list_ respect SuspendAll.
H A Dmonitor.cc1247 for (Monitor* list_mon : list->list_) {
1305 MonitorPool::ReleaseMonitors(self, &list_);
1336 list_.push_front(m);
1342 for (auto it = list_.begin(); it != list_.end(); ) {
1352 it = list_.erase(it);
H A Ddex_file.h156 MapItem list_[1]; member in struct:art::DexFile::MapList
261 return this->list_[idx];
276 TypeItem list_[1]; // elements of the list member in class:art::DexFile::TypeList
379 AnnotationSetRefItem list_[1]; member in struct:art::DexFile::AnnotationSetRefList
H A Dmonitor.h345 Monitors list_ GUARDED_BY(monitor_list_lock_);
H A Ddex_file_verifier.cc343 const DexFile::MapItem* item = map->list_;
1556 const DexFile::MapItem* item = map->list_;
2090 const DexFile::AnnotationSetRefItem* item = list->list_;
2331 const DexFile::MapItem* item = map->list_;
H A Ddex_file.cc1825 const AnnotationSetRefItem* set_ref_item = &set_ref_list->list_[index];
/art/cmdline/
H A Dcmdline_types.h401 explicit ParseStringList(std::vector<std::string>&& list) : list_(list) {}
404 return list_;
408 return std::move(list_);
412 return list_.size();
416 return art::Join(list_, Separator);
430 std::vector<std::string> list_; member in struct:art::ParseStringList

Completed in 191 milliseconds