Lines Matching defs:input
860 struct v4l2_input *input)
867 u32 index = input->index;
893 memset(input, 0, sizeof(*input));
894 input->index = index;
895 strscpy(input->name, iterm->name, sizeof(input->name));
897 input->type = V4L2_INPUT_TYPE_CAMERA;
902 static int uvc_ioctl_g_input(struct file *file, void *fh, unsigned int *input)
911 *input = 0;
923 *input = *buf - 1;
930 static int uvc_ioctl_s_input(struct file *file, void *fh, unsigned int input)
943 if (input)
948 if (input >= chain->selector->bNrInPins)
955 *buf = input + 1;