Home | History | Annotate | Download | only in tests

Lines Matching refs:ref_

3691     ref_ = 0;
3696 CHECK(ref_ == 0); // race may be reported here
3700 ref_ = -1;
3712 CHECK(ref_ >= 0);
3713 ref_++;
3719 CHECK(ref_ > 0);
3720 ref_--;
3721 bool do_delete = ref_ == 0;
3742 ANNOTATE_BENIGN_RACE(&this->ref_, "needs annotation");
3750 int ref_;
3751 static Mutex MU; // protects ref_
3885 ref_ = 0;
3890 CHECK(ref_ == 0); // race may be reported here
3893 ref_ = -1;
3904 AtomicIncrement(&ref_, 1);
3912 AtomicIncrement(&ref_, -1);
3914 if (ref_ == 0) {
3932 int ref_; // used in atomic ops.