Searched refs:GetExclusiveOwnerTid (Results 1 – 8 of 8) sorted by relevance
/art/runtime/base/ |
D | mutex-inl.h | 203 DCHECK(GetExclusiveOwnerTid() == 0 || GetExclusiveOwnerTid() == -1); in SharedLock() 210 DCHECK(GetExclusiveOwnerTid() == 0 || GetExclusiveOwnerTid() == -1); in SharedUnlock() 238 bool result = (GetExclusiveOwnerTid() == SafeGetTid(self)); in IsExclusiveHeld() 252 inline pid_t Mutex::GetExclusiveOwnerTid() const { in GetExclusiveOwnerTid() function 268 bool result = (GetExclusiveOwnerTid() == SafeGetTid(self)); in IsExclusiveHeld() 278 inline pid_t ReaderWriterMutex::GetExclusiveOwnerTid() const { in GetExclusiveOwnerTid() function
|
D | mutex.cc | 415 << "destroying mutex with owner or contenders. Owner:" << GetExclusiveOwnerTid(); in ~Mutex() 417 if (GetExclusiveOwnerTid() != 0) { in ~Mutex() 448 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); in ExclusiveLock() 502 DCHECK_EQ(GetExclusiveOwnerTid(), 0) << " my tid = " << SafeGetTid(self) in ExclusiveLock() 519 pid_t owner_tid = GetExclusiveOwnerTid(); in DumpStack() 601 DCHECK_EQ(GetExclusiveOwnerTid(), 0); in ExclusiveTryLock() 670 DCHECK_NE(GetExclusiveOwnerTid(), 0); in ExclusiveUnlock() 724 << " owner=" << GetExclusiveOwnerTid() << " "; in Dump() 759 CHECK_EQ(GetExclusiveOwnerTid(), 0); in ~ReaderWriterMutex() 785 ScopedContentionRecorder scr(this, SafeGetTid(self), GetExclusiveOwnerTid()); in ExclusiveLock() [all …]
|
D | mutex.h | 216 pid_t GetExclusiveOwnerTid() const; 394 pid_t GetExclusiveOwnerTid() const;
|
/art/runtime/ |
D | monitor.cc | 239 DCHECK_EQ(monitor_lock_.GetExclusiveOwnerTid(), 0) << " my tid = " << SafeGetTid(self); in Install() 242 DCHECK_EQ(monitor_lock_.GetExclusiveOwnerTid(), owner->GetTid()) in Install() 259 DCHECK_EQ(monitor_lock_.GetExclusiveOwnerTid(), 0) << " my tid = " << SafeGetTid(self); in Install()
|
D | thread_list.cc | 126 return Locks::thread_list_lock_->GetExclusiveOwnerTid(); in GetLockOwner()
|
D | runtime.cc | 2349 pid_t mutator_lock_owner = Locks::mutator_lock_->GetExclusiveOwnerTid(); in DumpLockHolders()
|
D | thread.cc | 2109 if (rw_mutex->GetExclusiveOwnerTid() == tid) { in DumpState()
|
D | class_linker.cc | 10558 return Locks::classlinker_classes_lock_->GetExclusiveOwnerTid(); in GetClassesLockOwner() 10562 return Locks::dex_lock_->GetExclusiveOwnerTid(); in GetDexLockOwner()
|