Lines Matching refs:monitors_
39 if (monitors_ == nullptr) { in AddMonitor()
40 monitors_.reset(new std::vector<mirror::Object*>()); in AddMonitor()
42 monitors_->push_back(obj); in AddMonitor()
50 if (monitors_ != nullptr) { in RemoveMonitorOrThrow()
53 auto it = std::find(monitors_->begin(), monitors_->end(), obj); in RemoveMonitorOrThrow()
54 if (it != monitors_->end()) { in RemoveMonitorOrThrow()
55 monitors_->erase(it); in RemoveMonitorOrThrow()
80 if (monitors_ != nullptr) { in CheckAllMonitorsReleasedOrThrow()
81 if (!monitors_->empty()) { in CheckAllMonitorsReleasedOrThrow()
88 for (mirror::Object* obj : *monitors_) { in CheckAllMonitorsReleasedOrThrow()
97 mirror::Object* first = (*monitors_)[0]; in CheckAllMonitorsReleasedOrThrow()
103 monitors_->clear(); in CheckAllMonitorsReleasedOrThrow()