Lines Matching refs:monitors_
964 if (monitors_ == nullptr) { in AddMonitor()
965 monitors_.reset(new std::vector<mirror::Object*>()); in AddMonitor()
967 monitors_->push_back(obj); in AddMonitor()
975 if (monitors_ != nullptr) { in RemoveMonitorOrThrow()
978 auto it = std::find(monitors_->begin(), monitors_->end(), obj); in RemoveMonitorOrThrow()
979 if (it != monitors_->end()) { in RemoveMonitorOrThrow()
980 monitors_->erase(it); in RemoveMonitorOrThrow()
1005 if (monitors_ != nullptr) { in CheckAllMonitorsReleasedOrThrow()
1006 if (!monitors_->empty()) { in CheckAllMonitorsReleasedOrThrow()
1013 for (mirror::Object* obj : *monitors_) { in CheckAllMonitorsReleasedOrThrow()
1022 mirror::Object* first = (*monitors_)[0]; in CheckAllMonitorsReleasedOrThrow()
1028 monitors_->clear(); in CheckAllMonitorsReleasedOrThrow()