HomeSort by relevance Sort by last modified time
    Searched refs:exclusive_owner_ (Results 1 - 3 of 3) sorted by null

  /art/runtime/base/
mutex-inl.h 142 DCHECK(exclusive_owner_ == 0U || exclusive_owner_ == -1U);
149 DCHECK(exclusive_owner_ == 0U || exclusive_owner_ == -1U);
191 return exclusive_owner_;
214 return exclusive_owner_;
217 return exclusive_owner_;
mutex.cc 323 exclusive_owner_ = 0;
336 LOG(shutting_down ? WARNING : FATAL) << "destroying mutex with owner: " << exclusive_owner_;
338 if (exclusive_owner_ != 0) {
390 DCHECK_EQ(exclusive_owner_, 0U);
391 exclusive_owner_ = SafeGetTid(self);
430 DCHECK_EQ(exclusive_owner_, 0U);
431 exclusive_owner_ = SafeGetTid(self);
457 DCHECK_NE(exclusive_owner_, 0U);
471 exclusive_owner_ = 0;
496 exclusive_owner_ = 0
    [all...]
mutex.h 274 volatile uint64_t exclusive_owner_; member in class:art::Mutex
279 volatile uint64_t exclusive_owner_; // Guarded by mutex_. member in class:art::Mutex
397 volatile uint64_t exclusive_owner_; member in class:art::ReaderWriterMutex
404 volatile uint64_t exclusive_owner_; // Guarded by rwlock_. member in class:art::ReaderWriterMutex

Completed in 97 milliseconds