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

  /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 90 pthread_mutex_t* pMutex; /* for android*/
109 GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x, pCond/pMutex=%x/%x", p_pthread_info->task_id,
111 p_pthread_info->pCond, p_pthread_info->pMutex);
219 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
252 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar, pMutex);
263 gki_pthread_info[task_id].pMutex = (pthread_mutex_t*)pMutex;
655 if (p_pthread_info->pCond != NULL && p_pthread_info->pMutex != NULL) {
657 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 89 pthread_mutex_t* pMutex; /* for android*/
106 GKI_TRACE_5("gki_task_entry task_id=%i, thread_id=%x/%x, pCond/pMutex=%x/%x", p_pthread_info->task_id,
108 p_pthread_info->pCond, p_pthread_info->pMutex);
216 UINT8 GKI_create_task (TASKPTR task_entry, UINT8 task_id, INT8 *taskname, UINT16 *stack, UINT16 stacksize, void* pCondVar, void* pMutex)
249 GKI_TRACE_3("GKI creating task %i, pCond/pMutex=%x/%x", task_id, pCondVar, pMutex);
260 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 562 milliseconds