Lines Matching refs:owner_

83       owner_(owner),  in Monitor()
106 owner_(owner), in Monitor()
135 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended()); in Install()
140 CHECK_EQ(owner_->GetThreadId(), lw.ThinLockOwner()); in Install()
165 if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) { in Install()
168 locking_method_ = owner_->GetCurrentMethod(&locking_dex_pc_, false); in Install()
178 DCHECK(owner_ == Thread::Current()); in AppendToWaitSet()
195 DCHECK(owner_ == Thread::Current()); in RemoveFromWaitSet()
322 if (owner_ == nullptr) { // Unowned. in TryLockLocked()
323 owner_ = self; in TryLockLocked()
330 } else if (owner_ == self) { // Recursive. in TryLockLocked()
363 if (owner_ != nullptr) { // Did the owner_ give the lock up? in Lock()
366 owner_->GetThreadName(name); in Lock()
368 owner_->GetTid(), in Lock()
394 if (owner_ != nullptr) { // Did the owner_ give the lock up? in Lock()
395 original_owner_thread_id = owner_->GetThreadId(); in Lock()
566 Thread* owner = owner_; in Unlock()
574 owner_ = nullptr; in Unlock()
599 if (owner_ != self) { in Wait()
633 owner_ = nullptr; in Wait()
720 owner_ = self; in Wait()
734 if (owner_ != self) { in Notify()
757 if (owner_ != self) { in NotifyAll()
783 Thread* owner = monitor->owner_; in Deflate()
1309 return owner_ != nullptr; in IsLocked()
1331 Thread* owner = owner_; in GetOwnerThreadId()
1441 MonitorInfo::MonitorInfo(mirror::Object* obj) : owner_(nullptr), entry_count_(0) { in MonitorInfo()
1452 owner_ = Runtime::Current()->GetThreadList()->FindThreadByThreadId(lock_word.ThinLockOwner()); in MonitorInfo()
1458 owner_ = mon->owner_; in MonitorInfo()