Searched refs:mutex_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/base/
H A Dmutex.cc95 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
104 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakSequentiallyConsistent(mutex_, 0)) {
106 while (!gAllMutexData->all_mutexes_guard.CompareExchangeWeakRelease(mutex_, 0)) {
113 const BaseMutex* const mutex_; member in class:art::FINAL
120 : mutex_(kLogLockContentions ? mutex : nullptr),
135 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
140 BaseMutex* const mutex_; member in class:art::FINAL
321 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, nullptr));
349 int rc = pthread_mutex_destroy(&mutex_);
388 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
[all...]
H A Dmutex.h278 pthread_mutex_t mutex_; member in class:art::Mutex
279 volatile uint64_t exclusive_owner_; // Guarded by mutex_.
/art/dex2oat/
H A Ddex2oat.cc397 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, nullptr), reason);
408 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
411 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
416 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason);
443 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
445 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &timeout_ts));
455 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
470 pthread_mutex_t mutex_; member in class:art::WatchDog

Completed in 4677 milliseconds