Lines Matching refs:handle
120 void exynos_gsc_destroy(void *handle) in exynos_gsc_destroy() argument
124 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_destroy()
139 void *handle, in exynos_gsc_set_csc_property() argument
146 CGscaler *gsc = GetGscaler(handle); in exynos_gsc_set_csc_property()
169 void *handle, in exynos_gsc_set_src_format() argument
182 CGscaler *gsc = GetGscaler(handle); in exynos_gsc_set_src_format()
204 void *handle, in exynos_gsc_set_dst_format() argument
217 CGscaler *gsc = GetGscaler(handle); in exynos_gsc_set_dst_format()
240 void *handle, in exynos_gsc_set_rotation() argument
245 CGscaler *gsc = GetGscaler(handle); in exynos_gsc_set_rotation()
270 void *handle, in exynos_gsc_set_src_addr() argument
277 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_set_src_addr()
295 void *handle, in exynos_gsc_set_dst_addr() argument
302 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_set_dst_addr()
319 int exynos_gsc_convert(void *handle) in exynos_gsc_convert() argument
324 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_convert()
330 if (gsc->m_gsc_m2m_run_core(handle) < 0) { in exynos_gsc_convert()
335 if (gsc->m_gsc_m2m_wait_frame_done(handle) < 0) { in exynos_gsc_convert()
350 if (gsc->m_gsc_m2m_stop(handle) < 0) { in exynos_gsc_convert()
363 int exynos_gsc_subdev_s_crop(void *handle, in exynos_gsc_subdev_s_crop() argument
367 CGscaler *gsc = GetGscaler(handle); in exynos_gsc_subdev_s_crop()
383 int exynos_gsc_config_exclusive(void *handle, in exynos_gsc_config_exclusive() argument
389 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_config_exclusive()
403 ret = gsc->m_gsc_m2m_config(handle, src_img, dst_img); in exynos_gsc_config_exclusive()
406 ret = gsc->m_gsc_out_config(handle, src_img, dst_img); in exynos_gsc_config_exclusive()
409 ret = gsc->m_gsc_cap_config(handle, src_img, dst_img); in exynos_gsc_config_exclusive()
420 int exynos_gsc_run_exclusive(void *handle, in exynos_gsc_run_exclusive() argument
426 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_run_exclusive()
427 if (handle == NULL) { in exynos_gsc_run_exclusive()
441 ret = gsc->m_gsc_m2m_run(handle, src_img, dst_img); in exynos_gsc_run_exclusive()
444 ret = gsc->m_gsc_out_run(handle, src_img); in exynos_gsc_run_exclusive()
447 ret = gsc->m_gsc_cap_run(handle, dst_img); in exynos_gsc_run_exclusive()
492 int exynos_gsc_config_blend_exclusive(void *handle, in exynos_gsc_config_blend_exclusive() argument
499 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_config_blend_exclusive()
516 int exynos_gsc_wait_frame_done_exclusive(void *handle) in exynos_gsc_wait_frame_done_exclusive() argument
521 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_wait_frame_done_exclusive()
522 if (handle == NULL) { in exynos_gsc_wait_frame_done_exclusive()
534 ret = gsc->m_gsc_m2m_wait_frame_done(handle); in exynos_gsc_wait_frame_done_exclusive()
541 int exynos_gsc_stop_exclusive(void *handle) in exynos_gsc_stop_exclusive() argument
546 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_stop_exclusive()
547 if (handle == NULL) { in exynos_gsc_stop_exclusive()
560 ret = gsc->m_gsc_m2m_stop(handle); in exynos_gsc_stop_exclusive()
571 int exynos_gsc_free_and_close(void *handle) in exynos_gsc_free_and_close() argument
577 CGscaler* gsc = GetGscaler(handle); in exynos_gsc_free_and_close()