Home
last modified time | relevance | path

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

/drivers/media/usb/uvc/
Duvc_v4l2.c940 struct v4l2_query_ext_ctrl *qec) in uvc_ioctl_query_ext_ctrl() argument
944 struct v4l2_queryctrl qc = { qec->id }; in uvc_ioctl_query_ext_ctrl()
951 qec->id = qc.id; in uvc_ioctl_query_ext_ctrl()
952 qec->type = qc.type; in uvc_ioctl_query_ext_ctrl()
953 strlcpy(qec->name, qc.name, sizeof(qec->name)); in uvc_ioctl_query_ext_ctrl()
954 qec->minimum = qc.minimum; in uvc_ioctl_query_ext_ctrl()
955 qec->maximum = qc.maximum; in uvc_ioctl_query_ext_ctrl()
956 qec->step = qc.step; in uvc_ioctl_query_ext_ctrl()
957 qec->default_value = qc.default_value; in uvc_ioctl_query_ext_ctrl()
958 qec->flags = qc.flags; in uvc_ioctl_query_ext_ctrl()
[all …]
/drivers/media/v4l2-core/
Dv4l2-ctrls.c2570 struct v4l2_query_ext_ctrl qec = { qc->id }; in v4l2_queryctrl() local
2573 rc = v4l2_query_ext_ctrl(hdl, &qec); in v4l2_queryctrl()
2577 qc->id = qec.id; in v4l2_queryctrl()
2578 qc->type = qec.type; in v4l2_queryctrl()
2579 qc->flags = qec.flags; in v4l2_queryctrl()
2580 strlcpy(qc->name, qec.name, sizeof(qc->name)); in v4l2_queryctrl()
2588 qc->minimum = qec.minimum; in v4l2_queryctrl()
2589 qc->maximum = qec.maximum; in v4l2_queryctrl()
2590 qc->step = qec.step; in v4l2_queryctrl()
2591 qc->default_value = qec.default_value; in v4l2_queryctrl()
Dv4l2-compat-ioctl32.c751 struct v4l2_query_ext_ctrl qec = { id }; in ctrl_is_pointer() local
771 return !ops->vidioc_query_ext_ctrl(file, fh, &qec) && in ctrl_is_pointer()
772 (qec.flags & V4L2_CTRL_FLAG_HAS_PAYLOAD); in ctrl_is_pointer()