Home
last modified time | relevance | path

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

/Linux-v5.10/drivers/media/usb/uvc/
Duvc_v4l2.c957 struct v4l2_query_ext_ctrl *qec) in uvc_ioctl_query_ext_ctrl() argument
961 struct v4l2_queryctrl qc = { qec->id }; in uvc_ioctl_query_ext_ctrl()
968 qec->id = qc.id; in uvc_ioctl_query_ext_ctrl()
969 qec->type = qc.type; in uvc_ioctl_query_ext_ctrl()
970 strscpy(qec->name, qc.name, sizeof(qec->name)); in uvc_ioctl_query_ext_ctrl()
971 qec->minimum = qc.minimum; in uvc_ioctl_query_ext_ctrl()
972 qec->maximum = qc.maximum; in uvc_ioctl_query_ext_ctrl()
973 qec->step = qc.step; in uvc_ioctl_query_ext_ctrl()
974 qec->default_value = qc.default_value; in uvc_ioctl_query_ext_ctrl()
975 qec->flags = qc.flags; in uvc_ioctl_query_ext_ctrl()
[all …]
/Linux-v5.10/drivers/media/v4l2-core/
Dv4l2-ctrls.c3267 struct v4l2_query_ext_ctrl qec = { qc->id }; in v4l2_queryctrl() local
3270 rc = v4l2_query_ext_ctrl(hdl, &qec); in v4l2_queryctrl()
3274 qc->id = qec.id; in v4l2_queryctrl()
3275 qc->type = qec.type; in v4l2_queryctrl()
3276 qc->flags = qec.flags; in v4l2_queryctrl()
3277 strscpy(qc->name, qec.name, sizeof(qc->name)); in v4l2_queryctrl()
3285 qc->minimum = qec.minimum; in v4l2_queryctrl()
3286 qc->maximum = qec.maximum; in v4l2_queryctrl()
3287 qc->step = qec.step; in v4l2_queryctrl()
3288 qc->default_value = qec.default_value; in v4l2_queryctrl()
Dv4l2-compat-ioctl32.c1103 struct v4l2_query_ext_ctrl qec = { id }; in ctrl_is_pointer() local
1123 return !ops->vidioc_query_ext_ctrl(file, fh, &qec) && in ctrl_is_pointer()
1124 (qec.flags & V4L2_CTRL_FLAG_HAS_PAYLOAD); in ctrl_is_pointer()