OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_next
(Results
1 - 3
of
3
) sorted by null
/art/runtime/mirror/
reference-inl.h
37
inline void Reference::SetPendingNext(ObjPtr<Reference>
pending_next
) {
39
SetFieldObject<true>(PendingNextOffset(),
pending_next
);
local
41
SetFieldObject<false>(PendingNextOffset(),
pending_next
);
local
reference.h
84
void SetPendingNext(ObjPtr<Reference>
pending_next
) REQUIRES_SHARED(Locks::mutator_lock_);
/art/runtime/gc/
reference_queue.cc
109
ObjPtr<mirror::Reference>
pending_next
= cur->GetPendingNext();
local
110
os << "Reference= " << cur << " PendingNext=" <<
pending_next
;
local
115
cur =
pending_next
;
Completed in 58 milliseconds