Home | History | Annotate | Download | only in tests

Lines Matching refs:ref_

3695     ref_ = 0;
3700 CHECK(ref_ == 0); // race may be reported here
3704 ref_ = -1;
3716 CHECK(ref_ >= 0);
3717 ref_++;
3723 CHECK(ref_ > 0);
3724 ref_--;
3725 bool do_delete = ref_ == 0;
3746 ANNOTATE_BENIGN_RACE(&this->ref_, "needs annotation");
3754 int ref_;
3755 static Mutex MU; // protects ref_
3889 ref_ = 0;
3894 CHECK(ref_ == 0); // race may be reported here
3897 ref_ = -1;
3908 AtomicIncrement(&ref_, 1);
3916 AtomicIncrement(&ref_, -1);
3918 if (ref_ == 0) {
3936 int ref_; // used in atomic ops.