Lines Matching refs:hdl
875 container_of(ctrl->handler, struct hdpvr_device, hdl); in hdpvr_try_ctrl()
891 container_of(ctrl->handler, struct hdpvr_device, hdl); in hdpvr_s_ctrl()
1132 v4l2_ctrl_handler_free(&dev->hdl); in hdpvr_device_release()
1160 struct v4l2_ctrl_handler *hdl = &dev->hdl; in hdpvr_register_videodev() local
1168 v4l2_ctrl_handler_init(hdl, 11); in hdpvr_register_videodev()
1170 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1172 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1174 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1176 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1178 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1181 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1183 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1185 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1187 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1189 v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1193 v4l2_ctrl_new_std_menu(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1197 v4l2_ctrl_new_std_menu(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1201 v4l2_ctrl_new_std_menu(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1206 dev->video_mode = v4l2_ctrl_new_std_menu(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1211 dev->video_bitrate = v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1214 dev->video_bitrate_peak = v4l2_ctrl_new_std(hdl, &hdpvr_ctrl_ops, in hdpvr_register_videodev()
1217 dev->v4l2_dev.ctrl_handler = hdl; in hdpvr_register_videodev()
1218 if (hdl->error) { in hdpvr_register_videodev()
1219 res = hdl->error; in hdpvr_register_videodev()
1224 res = v4l2_ctrl_handler_setup(hdl); in hdpvr_register_videodev()
1244 v4l2_ctrl_handler_free(hdl); in hdpvr_register_videodev()