HomeSort by relevance Sort by last modified time
    Searched refs:pCond (Results 1 - 3 of 3) sorted by null

  /hardware/intel/common/libwsbm/src/
wsbm_driver.c 182 struct _WsbmPCond *pCond = pCondConvert(cond);
187 pCond->func = func;
188 pthread_cond_init(&pCond->cond, NULL);
195 struct _WsbmPCond *pCond = pCondConvert(cond);
197 pthread_cond_destroy(&pCond->cond);
203 struct _WsbmPCond *pCond = pCondConvert(cond);
205 pthread_cond_broadcast(&pCond->cond);
211 struct _WsbmPCond *pCond = pCondConvert(cond);
214 pthread_cond_wait(&pCond->cond, &pMutex->mutex);
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 87 pthread_cond_t* pCond; /* for android*/
107 GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x, pCond/pMutex=%x/%x", p_pthread_info->task_id,
109 p_pthread_info->pCond, p_pthread_info->pMutex);
253 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar, pMutex);
263 gki_pthread_info[task_id].pCond = (pthread_cond_t*)pCondVar;
656 if (p_pthread_info->pCond != NULL && p_pthread_info->pMutex != NULL) {
658 GKI_TRACE_3("GKI_wait task=%i, pCond/pMutex = %x/%x", rtask, p_pthread_info->pCond, p_pthread_info->pMutex);
660 ret = pthread_cond_signal(p_pthread_info->pCond);
663 p_pthread_info->pCond = NULL
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 86 pthread_cond_t* pCond; /* for android*/
104 GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x, pCond/pMutex=%x/%x", p_pthread_info->task_id,
106 p_pthread_info->pCond, p_pthread_info->pMutex);
250 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar, pMutex);
260 gki_pthread_info[task_id].pCond = (pthread_cond_t*)pCondVar;
633 if (p_pthread_info->pCond != NULL && p_pthread_info->pMutex != NULL) {
635 GKI_TRACE_3("GKI_wait task=%i, pCond/pMutex = %x/%x", rtask, p_pthread_info->pCond, p_pthread_info->pMutex);
637 ret = pthread_cond_signal(p_pthread_info->pCond);
640 p_pthread_info->pCond = NULL
    [all...]

Completed in 1819 milliseconds