Searched refs:qctrl (Results 1 – 7 of 7) sorted by relevance
/linux-4.4.14/drivers/media/common/ |
D | cx2341x.c | 550 static int cx2341x_ctrl_query_fill(struct v4l2_queryctrl *qctrl, in cx2341x_ctrl_query_fill() argument 555 switch (qctrl->id) { in cx2341x_ctrl_query_fill() 569 cx2341x_ctrl_fill(qctrl->id, &name, &qctrl->type, in cx2341x_ctrl_query_fill() 570 &min, &max, &step, &def, &qctrl->flags); in cx2341x_ctrl_query_fill() 571 qctrl->minimum = min; in cx2341x_ctrl_query_fill() 572 qctrl->maximum = max; in cx2341x_ctrl_query_fill() 573 qctrl->step = step; in cx2341x_ctrl_query_fill() 574 qctrl->default_value = def; in cx2341x_ctrl_query_fill() 575 qctrl->reserved[0] = qctrl->reserved[1] = 0; in cx2341x_ctrl_query_fill() 576 strlcpy(qctrl->name, name, sizeof(qctrl->name)); in cx2341x_ctrl_query_fill() [all …]
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-common.c | 84 int v4l2_ctrl_query_fill(struct v4l2_queryctrl *qctrl, s32 _min, s32 _max, s32 _step, s32 _def) in v4l2_ctrl_query_fill() argument 92 v4l2_ctrl_fill(qctrl->id, &name, &qctrl->type, in v4l2_ctrl_query_fill() 93 &min, &max, &step, &def, &qctrl->flags); in v4l2_ctrl_query_fill() 98 qctrl->minimum = min; in v4l2_ctrl_query_fill() 99 qctrl->maximum = max; in v4l2_ctrl_query_fill() 100 qctrl->step = step; in v4l2_ctrl_query_fill() 101 qctrl->default_value = def; in v4l2_ctrl_query_fill() 102 qctrl->reserved[0] = qctrl->reserved[1] = 0; in v4l2_ctrl_query_fill() 103 strlcpy(qctrl->name, name, sizeof(qctrl->name)); in v4l2_ctrl_query_fill()
|
/linux-4.4.14/drivers/media/platform/davinci/ |
D | ccdc_hw_device.h | 84 int (*queryctrl)(struct v4l2_queryctrl *qctrl);
|
/linux-4.4.14/include/media/ |
D | v4l2-common.h | 85 int v4l2_ctrl_query_fill(struct v4l2_queryctrl *qctrl, s32 min, s32 max, s32 step, s32 def);
|
D | cx2341x.h | 97 struct v4l2_queryctrl *qctrl);
|
/linux-4.4.14/drivers/media/usb/pvrusb2/ |
D | pvrusb2-hdw.c | 797 struct v4l2_queryctrl qctrl; in ctrl_cx2341x_getv4lflags() local 799 qctrl.id = cptr->info->v4l_id; in ctrl_cx2341x_getv4lflags() 800 cx2341x_ctrl_query(&cptr->hdw->enc_ctl_state,&qctrl); in ctrl_cx2341x_getv4lflags() 808 if (qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY) { in ctrl_cx2341x_getv4lflags() 817 return qctrl.flags; in ctrl_cx2341x_getv4lflags() 2391 struct v4l2_queryctrl qctrl; in pvr2_hdw_create() local 2511 qctrl.id = ciptr->v4l_id; in pvr2_hdw_create() 2512 cx2341x_ctrl_query(&hdw->enc_ctl_state,&qctrl); in pvr2_hdw_create() 2513 if (!(qctrl.flags & V4L2_CTRL_FLAG_READ_ONLY)) { in pvr2_hdw_create() 2516 strncpy(hdw->mpeg_ctrl_info[idx].desc,qctrl.name, in pvr2_hdw_create() [all …]
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_base.c | 1103 struct v4l2_queryctrl qctrl; in matroxfb_ioctl() local 1106 if (copy_from_user(&qctrl, argp, sizeof(qctrl))) in matroxfb_ioctl() 1113 err = minfo->outputs[1].output->getqueryctrl(minfo->outputs[1].data, &qctrl); in matroxfb_ioctl() 1119 copy_to_user(argp, &qctrl, sizeof(qctrl))) in matroxfb_ioctl()
|