Home
last modified time | relevance | path

Searched defs:v4l2_queryctrl (Results 1 – 4 of 4) sorted by relevance

/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
Dvideodev2.h971 struct v4l2_queryctrl { struct
972 __u32 id;
973 __u32 type;
974 __u8 name[32];
975 __s32 minimum;
976 __s32 maximum;
977 __s32 step;
978 __s32 default_value;
979 __u32 flags;
980 __u32 reserved[2];
/kernel/linux/linux-5.10/include/uapi/linux/
Dvideodev2.h1783 struct v4l2_queryctrl { struct
1784 __u32 id;
1785 __u32 type; /* enum v4l2_ctrl_type */
1786 __u8 name[32]; /* Whatever */
1787 __s32 minimum; /* Note signedness */
1788 __s32 maximum;
1789 __s32 step;
1790 __s32 default_value;
1791 __u32 flags;
1792 __u32 reserved[2];
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
Dvideodev2.h919 struct v4l2_queryctrl { struct
920 __u32 id;
921 __u32 type;
922 __u8 name[32];
923 __s32 minimum;
924 __s32 maximum;
925 __s32 step;
926 __s32 default_value;
927 __u32 flags;
928 __u32 reserved[2];
/kernel/linux/linux-5.10/drivers/media/v4l2-core/
Dv4l2-ctrls.c3283 int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc) in v4l2_queryctrl() function