Searched defs:ReferenceQueue (Results 1 - 2 of 2) sorted by relevance

/art/runtime/gc/
H A Dreference_queue.h43 // appropriate java.lang.ref.ReferenceQueue. The linked list is maintained in the
45 class ReferenceQueue { class in namespace:art::gc
47 explicit ReferenceQueue(Mutex* lock);
61 void EnqueueFinalizerReferences(ReferenceQueue* cleared_references,
72 void ClearWhiteReferences(ReferenceQueue* cleared_references,
H A Dreference_queue.cc28 ReferenceQueue::ReferenceQueue(Mutex* lock) : lock_(lock), list_(nullptr) { function in class:art::gc::ReferenceQueue
31 void ReferenceQueue::AtomicEnqueueIfNotEnqueued(Thread* self, mirror::Reference* ref) {
39 void ReferenceQueue::EnqueueReference(mirror::Reference* ref) {
44 void ReferenceQueue::EnqueuePendingReference(mirror::Reference* ref) {
64 mirror::Reference* ReferenceQueue::DequeuePendingReference() {
91 void ReferenceQueue::Dump(std::ostream& os) const {
105 void ReferenceQueue::ClearWhiteReferences(ReferenceQueue* cleared_references,
125 void ReferenceQueue
[all...]

Completed in 795 milliseconds