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

/art/runtime/base/
H A Dmutex-inl.h47 : mutex_(kLogLockContentions ? mutex : NULL),
60 mutex_->RecordContention(blocked_tid_, owner_tid_, end_nano_time - start_nano_time_);
65 BaseMutex* const mutex_; member in class:art::ScopedContentionRecorder
H A Dmutex.cc109 explicit ScopedAllMutexesLock(const BaseMutex* mutex) : mutex_(mutex) {
115 while (!all_mutex_data->all_mutexes_guard.compare_and_swap(reinterpret_cast<int32_t>(mutex_), 0)) {
120 const BaseMutex* const mutex_; member in class:art::ScopedAllMutexesLock
306 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, &attributes));
309 CHECK_MUTEX_CALL(pthread_mutex_init, (&mutex_, NULL));
327 int rc = pthread_mutex_destroy(&mutex_);
369 CHECK_MUTEX_CALL(pthread_mutex_lock, (&mutex_));
401 int result = pthread_mutex_trylock(&mutex_);
459 CHECK_MUTEX_CALL(pthread_mutex_unlock, (&mutex_));
480 return static_cast<uint64_t>((mutex_
[all...]
H A Dmutex.h196 pthread_mutex_t mutex_; member in class:art::Mutex
/art/dex2oat/
H A Ddex2oat.cc461 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, NULL), reason);
472 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
475 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
480 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason);
522 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason);
524 int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_,
543 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason);
558 pthread_mutex_t mutex_; member in class:art::WatchDog

Completed in 70 milliseconds