Home
last modified time | relevance | path

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

/art/runtime/gc/
Dreference_queue.cc50 ObjPtr<mirror::Reference> head = list_->GetPendingNext<kWithoutReadBarrier>(); in EnqueueReference()
60 ObjPtr<mirror::Reference> ref = list_->GetPendingNext<kWithoutReadBarrier>(); in DequeuePendingReference()
67 ObjPtr<mirror::Reference> next = ref->GetPendingNext<kWithoutReadBarrier>(); in DequeuePendingReference()
110 ObjPtr<mirror::Reference> pending_next = cur->GetPendingNext(); in Dump()
126 cur = cur->GetPendingNext(); in GetLength()
192 ref = ref->GetPendingNext(); in ForwardSoftReferences()
/art/runtime/mirror/
Dreference.h79 Reference* GetPendingNext() REQUIRES_SHARED(Locks::mutator_lock_) { in GetPendingNext() function
98 return GetPendingNext<kWithoutReadBarrier>() == nullptr; in IsUnprocessed()
/art/runtime/gc/collector/
Dconcurrent_copying.cc1540 DCHECK(to_ref->AsReference()->GetPendingNext() != nullptr) in ProcessMarkStackRef()