HomeSort by relevance Sort by last modified time
    Searched defs:pMutex (Results 1 - 6 of 6) sorted by null

  /external/deqp/framework/delibs/dethread/unix/
deMutexUnix.c 90 pthread_mutex_t* pMutex = (pthread_mutex_t*)mutex;
91 DE_ASSERT(pMutex);
92 pthread_mutex_destroy(pMutex);
93 deFree(pMutex);
  /hardware/intel/common/libwsbm/src/
wsbm_driver.c 145 struct _WsbmPMutex *pMutex = pMutexConvert(mutex);
150 pMutex->func = func;
151 pthread_mutex_init(&pMutex->mutex, NULL);
158 struct _WsbmPMutex *pMutex = pMutexConvert(mutex);
160 pthread_mutex_destroy(&pMutex->mutex);
166 struct _WsbmPMutex *pMutex = pMutexConvert(mutex);
168 pthread_mutex_lock(&pMutex->mutex);
174 struct _WsbmPMutex *pMutex = pMutexConvert(mutex);
176 pthread_mutex_unlock(&pMutex->mutex);
212 struct _WsbmPMutex *pMutex = pMutexConvert(mutex)
    [all...]
  /system/nfc/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 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
    [all...]
  /system/nfc/src/gki/ulinux/
gki_ulinux.c 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
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]