Home | History | Annotate | Download | only in wifi_hal

Lines Matching defs:mMutex

25     pthread_mutex_t mMutex;
28 pthread_mutex_init(&mMutex, NULL);
31 pthread_mutex_destroy(&mMutex);
34 return pthread_mutex_trylock(&mMutex);
37 return pthread_mutex_lock(&mMutex);
40 pthread_mutex_unlock(&mMutex);
48 pthread_mutex_t mMutex;
52 pthread_mutex_init(&mMutex, NULL);
57 pthread_mutex_destroy(&mMutex);
61 return pthread_cond_wait(&mCondition, &mMutex);
81 return pthread_cond_timedwait(&mCondition, &mMutex, &abstime);