Home
last modified time | relevance | path

Searched refs:LW_LOCK_OWNER (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dmonitor.cc585 …DCHECK_EQ(LW_LOCK_OWNER(*obj->GetRawLockWordAddress()), static_cast<int32_t>(self->GetThinLockId()… in Inflate()
611 if (LW_LOCK_OWNER(thin) == threadId) { in MonitorEnter()
625 } else if (LW_LOCK_OWNER(thin) == 0) { in MonitorEnter()
636 … threadId, thinp, PrettyTypeOf(obj).c_str(), LW_LOCK_OWNER(thin)); in MonitorEnter()
647 if (LW_LOCK_OWNER(thin) == 0) { in MonitorEnter()
714 if (LW_LOCK_OWNER(thin) == self->GetThinLockId()) { in MonitorExit()
767 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) { in Wait()
790 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) { in Notify()
811 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) { in NotifyAll()
827 return LW_LOCK_OWNER(raw_lock_word); in GetThinLockId()
[all …]
Dmonitor.h56 #define LW_LOCK_OWNER(x) (((x) >> LW_LOCK_OWNER_SHIFT) & LW_LOCK_OWNER_MASK) macro