Searched defs:v4l2_queryctrl (Results 1 – 4 of 4) sorted by relevance
971 struct v4l2_queryctrl { struct972 __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];
1783 struct v4l2_queryctrl { struct1784 __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];
919 struct v4l2_queryctrl { struct920 __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];
3283 int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc) in v4l2_queryctrl() function