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

  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/dec/src/
ExynosVideoDecoder.c 114 pthread_mutex_t *pMutex = NULL;
141 pMutex = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
142 if (pMutex == NULL) {
146 if (pthread_mutex_init(pMutex, NULL) != 0) {
147 free(pMutex);
150 pCtx->pInMutex = (void*)pMutex;
152 pMutex = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
153 if (pMutex == NULL) {
157 if (pthread_mutex_init(pMutex, NULL) != 0) {
158 free(pMutex);
    [all...]
  /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;
630 if (p_pthread_info->pCond != NULL && p_pthread_info->pMutex != NULL) {
632 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/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 508 milliseconds