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

  /hardware/samsung_slsi/exynos5/librotator/
exynos_rotator.c 88 void *obj_mutex; member in struct:ROTATOR_HANDLE
393 if (exynos_mutex_trylock(rotator_handle->obj_mutex) == true) {
402 exynos_mutex_unlock(rotator_handle->obj_mutex);
409 rotator_handle->cur_obj_mutex = rotator_handle->obj_mutex;
604 rotator_handle->obj_mutex = NULL;
620 rotator_handle->obj_mutex = exynos_mutex_create(EXYNOS_MUTEX_TYPE_SHARED, mutex_name);
621 if (rotator_handle->obj_mutex == NULL) {
643 if ((rotator_handle->obj_mutex != NULL) &&
644 (exynos_mutex_get_created_status(rotator_handle->obj_mutex) == true)) {
645 if (exynos_mutex_destroy(rotator_handle->obj_mutex) == false
    [all...]
  /hardware/samsung_slsi/exynos5/libgscaler/
exynos_gsc_utils.h 129 void *obj_mutex[NUM_OF_GSC_HW]; member in struct:GSC_HANDLE
exynos_gscaler.c 546 // So, This obj_mutex cannot defense their open()
550 if (exynos_mutex_trylock(gsc_handle->obj_mutex[i]) == true) {
560 exynos_mutex_unlock(gsc_handle->obj_mutex[i]);
567 gsc_handle->cur_obj_mutex = gsc_handle->obj_mutex[i];
729 gsc_handle->obj_mutex[i] = NULL;
750 gsc_handle->obj_mutex[i] = exynos_mutex_create(EXYNOS_MUTEX_TYPE_SHARED, mutex_name);
751 if (gsc_handle->obj_mutex[i] == NULL) {
775 if ((gsc_handle->obj_mutex[i] != NULL) &&
776 (exynos_mutex_get_created_status(gsc_handle->obj_mutex[i]) == true)) {
777 if (exynos_mutex_destroy(gsc_handle->obj_mutex[i]) == false
    [all...]

Completed in 4232 milliseconds