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

/system/core/include/utils/
H A DMutex.h95 pthread_mutex_t mMutex; member in class:android::Mutex
107 pthread_mutex_init(&mMutex, NULL);
110 pthread_mutex_init(&mMutex, NULL);
117 pthread_mutex_init(&mMutex, &attr);
120 pthread_mutex_init(&mMutex, NULL);
124 pthread_mutex_destroy(&mMutex);
127 return -pthread_mutex_lock(&mMutex);
130 pthread_mutex_unlock(&mMutex);
133 return -pthread_mutex_trylock(&mMutex);
141 return -pthread_mutex_timedlock(&mMutex,
[all...]
H A DCondition.h106 return -pthread_cond_wait(&mCond, &mutex.mMutex);
113 return -pthread_cond_timedwait_relative_np(&mCond, &mutex.mMutex, &ts);
131 return -pthread_cond_timedwait(&mCond, &mutex.mMutex, &ts);
/system/core/libutils/
H A DRefBase.cpp252 Mutex::Autolock _l(mMutex);
290 AutoMutex _l(mMutex);
309 AutoMutex _l(mMutex);
341 AutoMutex _l(mMutex);
369 mutable Mutex mMutex; member in class:android::RefBase::weakref_impl

Completed in 531 milliseconds