Home | History | Annotate | Download | only in ulinux

Lines Matching defs:pMutex

84   pthread_mutex_t* pMutex; /* for android*/
102 GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x, pCond/pMutex=%x/%x",
105 p_pthread_info->pCond, p_pthread_info->pMutex);
215 void* pMutex) {
250 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar,
251 pMutex);
264 gki_pthread_info[task_id].pMutex = (pthread_mutex_t*)pMutex;
627 if (p_pthread_info->pCond != NULL && p_pthread_info->pMutex != NULL) {
629 GKI_TRACE_3("GKI_wait task=%i, pCond/pMutex = %x/%x", rtask,
630 p_pthread_info->pCond, p_pthread_info->pMutex);
631 ret = pthread_mutex_lock(p_pthread_info->pMutex);
633 ret = pthread_mutex_unlock(p_pthread_info->pMutex);
634 p_pthread_info->pMutex = NULL;