Home | History | Annotate | Download | only in wifi_hal

Lines Matching refs:mMutex

27     pthread_mutex_t mMutex;
30 pthread_mutex_init(&mMutex, NULL);
33 pthread_mutex_destroy(&mMutex);
36 return pthread_mutex_trylock(&mMutex);
39 return pthread_mutex_lock(&mMutex);
42 pthread_mutex_unlock(&mMutex);
50 pthread_mutex_t mMutex;
54 pthread_mutex_init(&mMutex, NULL);
59 pthread_mutex_destroy(&mMutex);
63 return pthread_cond_wait(&mCondition, &mMutex);