Lines Matching refs:owner_

96       owner_(owner),  in Monitor()
119 owner_(owner), in Monitor()
148 CHECK(owner_ == nullptr || owner_ == self || owner_->IsSuspended()); in Install()
153 CHECK_EQ(owner_->GetThreadId(), lw.ThinLockOwner()); in Install()
178 if (success && owner_ != nullptr && lock_profiling_threshold_ != 0) { in Install()
181 locking_method_ = owner_->GetCurrentMethod(&locking_dex_pc_, false); in Install()
212 NextMethodVisitor nmv(owner_); in Install()
227 DCHECK(owner_ == Thread::Current()); in AppendToWaitSet()
244 DCHECK(owner_ == Thread::Current()); in RemoveFromWaitSet()
371 if (owner_ == nullptr) { // Unowned. in TryLockLocked()
372 owner_ = self; in TryLockLocked()
381 } else if (owner_ == self) { // Recursive. in TryLockLocked()
434 if (owner_ != nullptr) { // Did the owner_ give the lock up? in Lock()
437 owner_->GetThreadName(name); in Lock()
439 owner_->GetTid(), in Lock()
471 if (owner_ != nullptr) { // Did the owner_ give the lock up? in Lock()
472 original_owner_thread_id = owner_->GetThreadId(); in Lock()
702 Thread* owner = owner_; in Unlock()
710 owner_ = nullptr; in Unlock()
735 if (owner_ != self) { in Wait()
769 owner_ = nullptr; in Wait()
857 owner_ = self; in Wait()
871 if (owner_ != self) { in Notify()
894 if (owner_ != self) { in NotifyAll()
920 Thread* owner = monitor->owner_; in Deflate()
1462 return owner_ != nullptr; in IsLocked()
1484 Thread* owner = owner_; in GetOwnerThreadId()
1594 MonitorInfo::MonitorInfo(mirror::Object* obj) : owner_(nullptr), entry_count_(0) { in MonitorInfo()
1605 owner_ = Runtime::Current()->GetThreadList()->FindThreadByThreadId(lock_word.ThinLockOwner()); in MonitorInfo()
1606 DCHECK(owner_ != nullptr) << "Thin-locked without owner!"; in MonitorInfo()
1612 owner_ = mon->owner_; in MonitorInfo()
1616 if (owner_ != nullptr) { in MonitorInfo()