Lines Matching refs:count_
60 JvmtiMonitor() : owner_(nullptr), count_(0) { } in JvmtiMonitor()
69 if (monitor->count_ > 0) { in Destroy()
70 monitor->count_ = 0; in Destroy()
93 count_++; in MonitorEnter()
120 DCHECK_EQ(0u, count_); in MonitorEnter()
121 count_ = 1; in MonitorEnter()
129 --count_; in MonitorExit()
130 if (count_ == 0u) { in MonitorExit()
175 size_t old_count = count_; in Wait()
178 count_ = 0; in Wait()
189 DCHECK_EQ(0u, count_); in Wait()
196 DCHECK_EQ(1u, count_); in Wait()
198 count_ = old_count; in Wait()
217 size_t count_; member in openjdkjvmti::JvmtiMonitor