Home
last modified time | relevance | path

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

/openbmc/linux/drivers/media/usb/uvc/
H A Duvc_v4l2.c1039 struct v4l2_query_ext_ctrl *qec) in uvc_ioctl_query_ext_ctrl() argument
1043 struct v4l2_queryctrl qc = { qec->id }; in uvc_ioctl_query_ext_ctrl()
1050 qec->id = qc.id; in uvc_ioctl_query_ext_ctrl()
1051 qec->type = qc.type; in uvc_ioctl_query_ext_ctrl()
1052 strscpy(qec->name, qc.name, sizeof(qec->name)); in uvc_ioctl_query_ext_ctrl()
1053 qec->minimum = qc.minimum; in uvc_ioctl_query_ext_ctrl()
1054 qec->maximum = qc.maximum; in uvc_ioctl_query_ext_ctrl()
1055 qec->step = qc.step; in uvc_ioctl_query_ext_ctrl()
1056 qec->default_value = qc.default_value; in uvc_ioctl_query_ext_ctrl()
1057 qec->flags = qc.flags; in uvc_ioctl_query_ext_ctrl()
[all …]
/openbmc/linux/drivers/media/v4l2-core/
H A Dv4l2-ctrls-api.c1124 struct v4l2_query_ext_ctrl qec = { qc->id }; in v4l2_queryctrl() local
1127 rc = v4l2_query_ext_ctrl(hdl, &qec); in v4l2_queryctrl()
1131 qc->id = qec.id; in v4l2_queryctrl()
1132 qc->type = qec.type; in v4l2_queryctrl()
1133 qc->flags = qec.flags; in v4l2_queryctrl()
1134 strscpy(qc->name, qec.name, sizeof(qc->name)); in v4l2_queryctrl()
1142 qc->minimum = qec.minimum; in v4l2_queryctrl()
1143 qc->maximum = qec.maximum; in v4l2_queryctrl()
1144 qc->step = qec.step; in v4l2_queryctrl()
1145 qc->default_value = qec.default_value; in v4l2_queryctrl()
H A Dv4l2-compat-ioctl32.c669 struct v4l2_query_ext_ctrl qec = { id }; in ctrl_is_pointer() local
689 return !ops->vidioc_query_ext_ctrl(file, fh, &qec) && in ctrl_is_pointer()
690 (qec.flags & V4L2_CTRL_FLAG_HAS_PAYLOAD); in ctrl_is_pointer()