HomeSort by relevance Sort by last modified time
    Searched defs:pMutex (Results 1 - 8 of 8) 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...]
  /external/chromium_org/third_party/sqlite/src/src/
test_multiplex.c 159 sqlite3_mutex *pMutex;
177 static void multiplexEnter(void){ sqlite3_mutex_enter(gMultiplex.pMutex); }
178 static void multiplexLeave(void){ sqlite3_mutex_leave(gMultiplex.pMutex); }
906 gMultiplex.pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
907 if( !gMultiplex.pMutex ){
912 sqlite3_mutex_free(gMultiplex.pMutex);
    [all...]
test_quota.c 151 sqlite3_mutex *pMutex;
164 static void quotaEnter(void){ sqlite3_mutex_enter(gQuota.pMutex); }
165 static void quotaLeave(void){ sqlite3_mutex_leave(gQuota.pMutex); }
581 gQuota.pMutex = sqlite3_mutex_alloc(SQLITE_MUTEX_FAST);
582 if( !gQuota.pMutex ){
636 sqlite3_mutex_free(gQuota.pMutex);
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 88 pthread_mutex_t* pMutex; /* 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);
217 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
253 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar, pMutex);
264 gki_pthread_info[task_id].pMutex = (pthread_mutex_t*)pMutex;
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)
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 87 pthread_mutex_t* pMutex; /* 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);
214 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
250 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar, pMutex);
261 gki_pthread_info[task_id].pMutex = (pthread_mutex_t*)pMutex;
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)
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/dec/src/
ExynosVideoDecoder.c 118 pthread_mutex_t *pMutex = NULL;
145 pMutex = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
146 if (pMutex == NULL) {
150 if (pthread_mutex_init(pMutex, NULL) != 0) {
151 free(pMutex);
154 pCtx->pInMutex = (void*)pMutex;
156 pMutex = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
157 if (pMutex == NULL) {
161 if (pthread_mutex_init(pMutex, NULL) != 0) {
162 free(pMutex);
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/enc/src/
ExynosVideoEncoder.c 122 pthread_mutex_t *pMutex = NULL;
149 pMutex = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
150 if (pMutex == NULL) {
154 if (pthread_mutex_init(pMutex, NULL) != 0) {
155 free(pMutex);
158 pCtx->pInMutex = (void*)pMutex;
160 pMutex = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
161 if (pMutex == NULL) {
165 if (pthread_mutex_init(pMutex, NULL) != 0) {
166 free(pMutex);
    [all...]

Completed in 786 milliseconds