Lines Matching defs:pMutex
84 pthread_mutex_t* pMutex; /* for android*/
100 GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x, pCond/pMutex=%x/%x",
103 p_pthread_info->pCond, p_pthread_info->pMutex);
213 void* pMutex) {
248 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar,
249 pMutex);
262 gki_pthread_info[task_id].pMutex = (pthread_mutex_t*)pMutex;
610 if (p_pthread_info->pCond != NULL && p_pthread_info->pMutex != NULL) {
612 GKI_TRACE_3("GKI_wait task=%i, pCond/pMutex = %x/%x", rtask,
613 p_pthread_info->pCond, p_pthread_info->pMutex);
614 ret = pthread_mutex_lock(p_pthread_info->pMutex);
616 ret = pthread_mutex_unlock(p_pthread_info->pMutex);
617 p_pthread_info->pMutex = NULL;