/kernel/linux/linux-5.10/include/media/ |
H A D | v4l2-ctrls.h | 229 * @p_def: The control's default value represented via a union which 286 union v4l2_ctrl_ptr p_def; member 392 * @p_def: The control's default value for compound controls. 421 union v4l2_ctrl_ptr p_def; member 690 * @p_def: The control's default value. 693 * to the @p_def field. Use v4l2_ctrl_ptr_create() to create @p_def from a 701 const union v4l2_ctrl_ptr p_def);
|
/kernel/linux/linux-6.6/include/media/ |
H A D | v4l2-ctrls.h | 245 * @p_def: The control's default value represented via a union which 306 union v4l2_ctrl_ptr p_def; member 425 * @p_def: The control's default value for compound controls. 454 union v4l2_ctrl_ptr p_def; member 723 * @p_def: The control's default value. 726 * to the @p_def field. Use v4l2_ctrl_ptr_create() to create @p_def from a 734 const union v4l2_ctrl_ptr p_def);
|
/kernel/linux/linux-6.6/drivers/media/v4l2-core/ |
H A D | v4l2-ctrls-core.c | 117 if (ctrl->p_def.p_const) in std_init_compound() 118 memcpy(p, ctrl->p_def.p_const, ctrl->elem_size); in std_init_compound() 1756 const s64 *qmenu_int, const union v4l2_ctrl_ptr p_def, in v4l2_ctrl_new() 1924 if (type >= V4L2_CTRL_COMPOUND_TYPES && p_def.p_const) in v4l2_ctrl_new() 1983 if (type >= V4L2_CTRL_COMPOUND_TYPES && p_def.p_const) { in v4l2_ctrl_new() 1985 ctrl->p_def.p = &ctrl[1]; in v4l2_ctrl_new() 1987 ctrl->p_def.p = ctrl->p_cur.p + tot_ctrl_size; in v4l2_ctrl_new() 1988 memcpy(ctrl->p_def.p, p_def.p_const, elem_size); in v4l2_ctrl_new() 2041 flags, qmenu, qmenu_int, cfg->p_def, pri in v4l2_ctrl_new_custom() 1749 v4l2_ctrl_new(struct v4l2_ctrl_handler *hdl, const struct v4l2_ctrl_ops *ops, const struct v4l2_ctrl_type_ops *type_ops, u32 id, const char *name, enum v4l2_ctrl_type type, s64 min, s64 max, u64 step, s64 def, const u32 dims[V4L2_CTRL_MAX_DIMS], u32 elem_size, u32 flags, const char * const *qmenu, const s64 *qmenu_int, const union v4l2_ctrl_ptr p_def, void *priv) v4l2_ctrl_new() argument 2137 v4l2_ctrl_new_std_compound(struct v4l2_ctrl_handler *hdl, const struct v4l2_ctrl_ops *ops, u32 id, const union v4l2_ctrl_ptr p_def) v4l2_ctrl_new_std_compound() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/v4l2-core/ |
H A D | v4l2-ctrls.c | 1626 if (ctrl->p_def.p_const) in std_init_compound() 1627 memcpy(p, ctrl->p_def.p_const, ctrl->elem_size); in std_init_compound() 2567 const s64 *qmenu_int, const union v4l2_ctrl_ptr p_def, in v4l2_ctrl_new() 2689 if (type >= V4L2_CTRL_COMPOUND_TYPES && p_def.p_const) in v4l2_ctrl_new() 2736 if (type >= V4L2_CTRL_COMPOUND_TYPES && p_def.p_const) { in v4l2_ctrl_new() 2737 ctrl->p_def.p = ctrl->p_cur.p + tot_ctrl_size; in v4l2_ctrl_new() 2738 memcpy(ctrl->p_def.p, p_def.p_const, elem_size); in v4l2_ctrl_new() 2792 flags, qmenu, qmenu_int, cfg->p_def, priv); in v4l2_ctrl_new_custom() 2890 const union v4l2_ctrl_ptr p_def) in v4l2_ctrl_new_std_compound() 2560 v4l2_ctrl_new(struct v4l2_ctrl_handler *hdl, const struct v4l2_ctrl_ops *ops, const struct v4l2_ctrl_type_ops *type_ops, u32 id, const char *name, enum v4l2_ctrl_type type, s64 min, s64 max, u64 step, s64 def, const u32 dims[V4L2_CTRL_MAX_DIMS], u32 elem_size, u32 flags, const char * const *qmenu, const s64 *qmenu_int, const union v4l2_ctrl_ptr p_def, void *priv) v4l2_ctrl_new() argument 2888 v4l2_ctrl_new_std_compound(struct v4l2_ctrl_handler *hdl, const struct v4l2_ctrl_ops *ops, u32 id, const union v4l2_ctrl_ptr p_def) v4l2_ctrl_new_std_compound() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/test-drivers/vivid/ |
H A D | vivid-ctrls.c | 280 .p_def.p_const = &area,
|
/kernel/linux/linux-6.6/drivers/media/test-drivers/vivid/ |
H A D | vivid-ctrls.c | 346 .p_def.p_const = &area,
|