Searched defs:GetThinLockId (Results 1 - 3 of 3) sorted by relevance

/art/runtime/mirror/
H A Dobject-inl.h46 inline uint32_t Object::GetThinLockId() { function in class:art::mirror::Object
47 return Monitor::GetThinLockId(monitor_);
/art/runtime/
H A Dmonitor.cc585 DCHECK_EQ(LW_LOCK_OWNER(*obj->GetRawLockWordAddress()), static_cast<int32_t>(self->GetThinLockId()));
589 VLOG(monitor) << "monitor: thread " << self->GetThinLockId()
603 uint32_t threadId = self->GetThinLockId();
714 if (LW_LOCK_OWNER(thin) == self->GetThinLockId()) {
767 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) {
778 VLOG(monitor) << StringPrintf("monitor: thread %d fattened lock %p by wait()", self->GetThinLockId(), thinp);
790 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) {
811 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) {
825 uint32_t Monitor::GetThinLockId(uint32_t raw_lock_word) { function in class:art::Monitor
830 return owner ? owner->GetThinLockId()
[all...]
H A Dthread.h251 uint32_t GetThinLockId() const { function

Completed in 4222 milliseconds