Home
last modified time | relevance | path

Searched refs:hvfe_lib_handle (Results 1 – 1 of 1) sorted by relevance

/hardware/qcom/sm8150/media/hypv-intercept/
Dhypv_intercept.cpp82 static void *hvfe_lib_handle = NULL; variable
142 hvfe_lib_handle = dlopen("libhyp_video_fe.so", RTLD_NOW); in hypv_init()
143 if (hvfe_lib_handle == NULL) { in hypv_init()
147 video_fe_open = (video_fe_open_func)dlsym(hvfe_lib_handle, "video_fe_open"); in hypv_init()
152 video_fe_ioctl = (video_fe_ioctl_func)dlsym(hvfe_lib_handle, "video_fe_ioctl"); in hypv_init()
157 video_fe_close = (video_fe_close_func)dlsym(hvfe_lib_handle, "video_fe_close"); in hypv_init()
166 if (rc < 0 && hvfe_lib_handle) { in hypv_init()
167 dlclose(hvfe_lib_handle); in hypv_init()
168 hvfe_lib_handle = NULL; in hypv_init()
176 dlclose(hvfe_lib_handle); in hypv_deinit()
[all …]