Searched refs:vdev (Results 1 - 25 of 27) sorted by relevance

12

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/media/video/
H A Dbw-qcam.h55 struct video_device vdev; member in struct:qcam_device
H A Dw9966.c86 #define W9966_STATE_VDEV 0x04 // vdev registered
103 struct video_device vdev; member in struct:w9966_dev
183 static inline int w9966_pdev_claim(struct w9966_dev *vdev);
184 static inline void w9966_pdev_release(struct w9966_dev *vdev);
212 static int w9966_v4l_open(struct video_device *vdev, int mode);
213 static void w9966_v4l_close(struct video_device *vdev);
214 static int w9966_v4l_ioctl(struct video_device *vdev,
216 static long w9966_v4l_read(struct video_device *vdev,
368 memset(&cam->vdev, 0, sizeof(struct video_device));
369 strcpy(cam->vdev
838 w9966_v4l_open(struct video_device *vdev, int flags) argument
859 w9966_v4l_close(struct video_device *vdev) argument
874 w9966_v4l_ioctl(struct video_device *vdev, unsigned int cmd, void *arg) argument
1052 w9966_v4l_read(struct video_device *vdev, char *buf, unsigned long count, int noblock) argument
[all...]
H A Dvideodev.c54 struct video_device *vdev; member in struct:videodev_proc_data
342 if (vfd == d->vdev)
437 d->vdev = vfd;
452 if (vfd == d->vdev) {
H A Dc-qcam.c42 struct video_device vdev; member in struct:qcam_device
751 memcpy(&q->vdev, &qcam_template, sizeof(qcam_template));
808 if (video_register_device(&qcam->vdev, VFL_TYPE_GRABBER, video_nr)==-1)
818 qcam->vdev.minor, qcam->pport->name);
827 video_unregister_device(&qcam->vdev);
H A Dvino.c23 struct video_device vdev; member in struct:vino_device
H A Dbw-qcam.c177 memcpy(&q->vdev, &qcam_template, sizeof(qcam_template));
957 if(video_register_device(&qcam->vdev, VFL_TYPE_GRABBER, video_nr)==-1)
971 video_unregister_device(&qcam->vdev);
H A Dcpia.h261 struct video_device vdev; /* v4l videodev */ member in struct:cam_data
H A Dcpia.c1288 sprintf(name, "video%d", cam->vdev.minor);
1313 sprintf(name, "video%d", cam->vdev.minor);
3045 int cpia_video_init(struct video_device *vdev) argument
3048 create_proc_cpia_cam(vdev->priv);
3182 memcpy(&cam->vdev, &cpia_template, sizeof(cpia_template));
3183 cam->vdev.priv = cam;
3215 if (video_register_device(&camera->vdev, VFL_TYPE_GRABBER, video_nr) == -1) {
3258 video_unregister_device(&cam->vdev);
3261 "deferring video_unregister_device\n", cam->vdev.minor);
3267 DBG("destroying /proc/cpia/video%d\n", cam->vdev
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/
H A Dpwc-if.c36 vdev: struct video_device *
131 static int pwc_video_open(struct video_device *vdev, int mode);
132 static void pwc_video_close(struct video_device *vdev);
133 static long pwc_video_read(struct video_device *vdev, char *buf, unsigned long count, int noblock);
134 static long pwc_video_write(struct video_device *vdev, const char *buf, unsigned long count, int noblock);
135 static unsigned int pwc_video_poll(struct video_device *vdev, struct file *file, poll_table *wait);
136 static int pwc_video_ioctl(struct video_device *vdev, unsigned int cmd, void *arg);
137 static int pwc_video_mmap(struct video_device *vdev, const char *adr, unsigned long size);
937 static int pwc_video_open(struct video_device *vdev, int mode) argument
942 Trace(TRACE_OPEN, ">> video_open called(vdev
1059 pwc_video_close(struct video_device *vdev) argument
1112 pwc_video_read(struct video_device *vdev, char *buf, unsigned long count, int noblock) argument
1173 pwc_video_write(struct video_device *vdev, const char *buf, unsigned long count, int noblock) argument
1178 pwc_video_poll(struct video_device *vdev, struct file *file, poll_table *wait) argument
1197 pwc_video_ioctl(struct video_device *vdev, unsigned int cmd, void *arg) argument
1566 pwc_video_mmap(struct video_device *vdev, const char *adr, unsigned long size) argument
[all...]
H A Dstv680.h92 struct video_device vdev; member in struct:usb_stv
H A Dusbvideo.c982 video_unregister_device(&uvd->vdev);
1071 memset(&uvd->vdev, 0, sizeof(uvd->vdev));
1072 i = sprintf(uvd->vdev.name, "%s USB Camera", cams->drvName);
1073 if (i >= sizeof(uvd->vdev.name)) {
1074 err("Wrote too much into uvd->vdev.name, expect trouble!");
1076 uvd->vdev.type = VID_TYPE_CAPTURE;
1077 uvd->vdev.hardware = VID_HARDWARE_CPIA;
1078 uvd->vdev.open = usbvideo_v4l_open;
1079 uvd->vdev
[all...]
H A Dse401.c199 sprintf (name, "video%d", se401->vdev.minor);
221 sprintf(name, "video%d", se401->vdev.minor);
1032 video_unregister_device(&se401->vdev);
1058 static int se401_ioctl(struct video_device *vdev, unsigned int cmd, void *arg) argument
1060 struct usb_se401 *se401 = (struct usb_se401 *)vdev;
1503 memcpy(&se401->vdev, &se401_template, sizeof(se401_template));
1504 memcpy(se401->vdev.name, se401->camera_name, strlen(se401->camera_name));
1509 if (video_register_device(&se401->vdev, VFL_TYPE_GRABBER, video_nr) == -1) {
1514 info("registered new video device: video%d", se401->vdev.minor);
1526 video_unregister_device(&se401->vdev);
[all...]
H A Dpwc.h115 struct video_device vdev; member in struct:pwc_device
H A Dse401.h160 struct video_device vdev; member in struct:usb_se401
H A Dstv680.c570 sprintf (name, "video%d", stv680->vdev.minor);
590 sprintf (name, "video%d", stv680->vdev.minor);
1156 video_unregister_device (&stv680->vdev);
1169 static int stv680_ioctl (struct video_device *vdev, unsigned int cmd, void *arg) argument
1171 struct usb_stv *stv680 = (struct usb_stv *) vdev;
1535 memcpy (&stv680->vdev, &stv680_template, sizeof (stv680_template));
1536 memcpy (stv680->vdev.name, stv680->camera_name, strlen (stv680->camera_name));
1541 if (video_register_device (&stv680->vdev, VFL_TYPE_GRABBER, video_nr) == -1) {
1546 PDEBUG (0, "STV(i): registered new video device: video%d", stv680->vdev.minor);
1591 video_unregister_device (&stv680->vdev);
[all...]
H A Dvicam.c364 struct video_device vdev; // v4l video device member in struct:vicam_camera
1180 sprintf(name, "video%d", cam->vdev.minor);
1204 sprintf(name, "video%d", cam->vdev.minor);
1213 vicam_video_init(struct video_device *vdev) argument
1217 vicam_create_proc_entry(vdev->priv);
1317 memcpy(&cam->vdev, &vicam_template,
1319 cam->vdev.priv = cam; // sort of a reverse mapping for those functions that get vdev only
1324 if (video_register_device(&cam->vdev, VFL_TYPE_GRABBER, -1) == -1) {
1330 printk(KERN_INFO "ViCam webcam driver now controlling video device %d\n",cam->vdev
[all...]
H A Dov511.c543 snprintf(dirname, 10, "%d", ov->vdev.minor);
593 snprintf(dirname, 10, "%d", ov->vdev.minor);
4534 struct video_device *vdev = video_devdata(file); local
4535 struct usb_ov511 *ov = vdev->priv;
4578 file->private_data = vdev;
4591 struct video_device *vdev = file->private_data; local
4592 struct usb_ov511 *ov = vdev->priv;
4633 struct video_device *vdev = file->private_data; local
4634 struct usb_ov511 *ov = vdev->priv;
5041 vu->video = ov->vdev
5079 struct video_device *vdev = file->private_data; local
5095 struct video_device *vdev = file->private_data; local
5249 struct video_device *vdev = file->private_data; local
[all...]
H A Dusbvideo.h205 struct video_device vdev; /* Must be the first field! */ member in struct:uvd
H A Dov511.h448 struct video_device vdev; member in struct:usb_ov511
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390/kernel/
H A Dsetup.c155 int vdev; local
157 vdev = simple_strtoul(str, &str, 0);
158 if (vdev >= 0 && vdev < 65536)
159 console_device = vdev;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390x/kernel/
H A Dsetup.c155 int vdev; local
157 vdev = simple_strtoul(str, &str, 0);
158 if (vdev >= 0 && vdev < 65536)
159 console_device = vdev;
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/s390/char/
H A Dtuball.c105 int vdev; local
107 vdev = simple_strtoul(str, 0, 16);
108 if (vdev >= 0 && vdev < 65536)
109 tub3270_con_devno = vdev;
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/8021q/
H A Dvlan_dev.c334 struct net_device *vdev = dev; /* save this for the bottom of the method */ local
402 struct net_device_stats *stats = vlan_dev_get_stats(vdev);
406 VLAN_DEV_INFO(vdev)->cnt_inc_headroom_on_tx++;
408 printk(VLAN_DBG "%s: %s: had to grow skb.\n", __FUNCTION__, vdev->name);
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/message/fusion/
H A Dmptscsih.c4631 VirtDevice *vdev; local
4637 if ((vdev = hd->Targets[target_id]) == NULL) {
4638 if ((vdev = kmalloc(sizeof(VirtDevice), GFP_ATOMIC)) == NULL) {
4642 memset(vdev, 0, sizeof(VirtDevice));
4643 rwlock_init(&vdev->VdevLock);
4644 Q_INIT(&vdev->WaitQ, void);
4645 Q_INIT(&vdev->SentQ, void);
4646 Q_INIT(&vdev->DoneQ, void);
4647 vdev->tflags = 0;
4648 vdev
4824 VirtDevice *vdev; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/ov51x/
H A Dov51x.c752 snprintf(dirname, 10, "%d", ov->vdev.minor);
754 sprintf(dirname, "%d", ov->vdev.minor);
806 snprintf(dirname, 10, "%d", ov->vdev.minor);
808 sprintf(dirname, "%d", ov->vdev.minor);
5623 ov51x_v4l1_open(struct video_device *vdev, int flags) argument
5629 struct video_device *vdev = video_devdata(file);
5631 struct usb_ov511 *ov = vdev->priv;
5681 file->private_data = vdev;
5700 ov51x_v4l1_close(struct video_device *vdev) argument
5706 struct video_device *vdev
6207 ov51x_v4l1_generic_ioctl(struct video_device *vdev, unsigned int cmd, void *arg) argument
6261 ov51x_v4l1_ioctl(struct video_device *vdev, unsigned int cmd, void *arg) argument
6281 struct video_device *vdev = file->private_data; local
6297 ov51x_v4l1_read(struct video_device *vdev, char *buf, unsigned long count, int noblock) argument
6461 ov51x_v4l1_mmap(struct vm_area_struct *vma, struct video_device *vdev, const char *adr, unsigned long size) argument
[all...]

Completed in 216 milliseconds

12