Home
last modified time | relevance | path

Searched refs:GetThinLockId (Results 1 – 12 of 12) sorted by relevance

/art/runtime/native/
Djava_lang_DexCache.cc29 DCHECK_EQ(dex_cache->GetThinLockId(), soa.Self()->GetThinLockId()); in DexCache_getDexNative()
Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc116 JDWP::Append4BE(bytes, t->GetThinLockId()); in ThreadStatsGetterCallback()
/art/runtime/
Dmonitor.cc585 …DCHECK_EQ(LW_LOCK_OWNER(*obj->GetRawLockWordAddress()), static_cast<int32_t>(self->GetThinLockId()… in Inflate()
589 VLOG(monitor) << "monitor: thread " << self->GetThinLockId() in Inflate()
603 uint32_t threadId = self->GetThinLockId(); in MonitorEnter()
714 if (LW_LOCK_OWNER(thin) == self->GetThinLockId()) { in MonitorExit()
767 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) { in Wait()
778 …or) << StringPrintf("monitor: thread %d fattened lock %p by wait()", self->GetThinLockId(), thinp); in Wait()
790 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) { in Notify()
811 if (LW_LOCK_OWNER(thin) != self->GetThinLockId()) { in NotifyAll()
825 uint32_t Monitor::GetThinLockId(uint32_t raw_lock_word) { in GetThinLockId() function in art::Monitor
830 return owner ? owner->GetThinLockId() : 0; in GetThinLockId()
[all …]
Dmonitor.h72 static uint32_t GetThinLockId(uint32_t raw_lock_word)
Dthread_list.cc600 if (thread->GetThinLockId() == thin_lock_id) { in FindThreadByThinLockId()
Dthread.cc473 if (GetThinLockId() != 0) { in ShortDump()
475 os << GetThinLockId() in ShortDump()
715 << " tid=" << thread->GetThinLockId() in DumpState()
2003 return object->GetThinLockId() == thin_lock_id_; in HoldsLock()
Dthread.h251 uint32_t GetThinLockId() const { in GetThinLockId() function
Ddebugger.cc3014 JDWP::Set4BE(&buf[0], t->GetThinLockId()); in DdmSendThreadNotification()
3024 JDWP::Append4BE(bytes, t->GetThinLockId()); in DdmSendThreadNotification()
3545 record->thin_lock_id = self->GetThinLockId(); in RecordAllocation()
Djni_internal.cc453 jni_on_load_thread_id_(Thread::Current()->GetThinLockId()), in SharedLibrary()
478 if (jni_on_load_thread_id_ == self->GetThinLockId()) { in CheckOnLoadResult()
/art/runtime/mirror/
Dobject-inl.h46 inline uint32_t Object::GetThinLockId() { in GetThinLockId() function
47 return Monitor::GetThinLockId(monitor_); in GetThinLockId()
Dobject.h105 uint32_t GetThinLockId();
Dclass.cc63 CHECK_EQ(GetThinLockId(), self->GetThinLockId()) in SetStatus()