Searched refs:ref_count_ (Results 1 - 3 of 3) sorted by relevance

/art/compiler/utils/
H A Ddebug_stack.h77 DebugStackRefCounterImpl() : ref_count_(0u) { }
79 size_t IncrementRefCount() { return ++ref_count_; }
80 void DecrementRefCount() { --ref_count_; }
81 size_t GetRefCount() const { return ref_count_; }
82 void CheckNoRefs() const { CHECK_EQ(ref_count_, 0u); }
85 size_t ref_count_; member in class:art::DebugStackRefCounterImpl
92 : counter_(counter), ref_count_(counter->IncrementRefCount()) {
95 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) {
102 void CheckTop() { CHECK_EQ(counter_->GetRefCount(), ref_count_); }
106 size_t ref_count_; member in class:art::DebugStackReferenceImpl
[all...]
/art/runtime/
H A Dthread_pool.h136 WorkStealingTask() : ref_count_(0) {}
139 return ref_count_;
146 size_t ref_count_; member in class:art::WorkStealingTask
H A Dthread_pool.cc217 ++stealing_task->ref_count_;
241 steal_from_task->ref_count_++;
254 finalize = !--steal_from_task->ref_count_;
266 finalize = !--stealing_task->ref_count_;

Completed in 121 milliseconds