Home
last modified time | relevance | path

Searched refs:GetPendingNext (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/
Dreference_queue.cc51 ObjPtr<mirror::Reference> head = list_->GetPendingNext<kWithoutReadBarrier>(); in EnqueueReference()
61 ObjPtr<mirror::Reference> ref = list_->GetPendingNext<kWithoutReadBarrier>(); in DequeuePendingReference()
68 ObjPtr<mirror::Reference> next = ref->GetPendingNext<kWithoutReadBarrier>(); in DequeuePendingReference()
111 ObjPtr<mirror::Reference> pending_next = cur->GetPendingNext(); in Dump()
127 cur = cur->GetPendingNext(); in GetLength()
193 ref = ref->GetPendingNext(); in ForwardSoftReferences()
/art/runtime/mirror/
Dreference.h77 Reference* GetPendingNext() REQUIRES_SHARED(Locks::mutator_lock_) { in GetPendingNext() function
96 return GetPendingNext<kWithoutReadBarrier>() == nullptr; in IsUnprocessed()
/art/runtime/gc/collector/
Dconcurrent_copying.cc2270 DCHECK(to_ref->AsReference()->GetPendingNext() != nullptr) in ProcessMarkStackRef()