Lines Matching refs:file
65 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
66 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
67 unsigned int (*poll) (struct file *, struct poll_table_struct *);
68 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
70 long (*compat_ioctl32) (struct file *, unsigned int, unsigned long);
72 unsigned long (*get_unmapped_area) (struct file *, unsigned long,
74 int (*mmap) (struct file *, struct vm_area_struct *);
75 int (*open) (struct file *);
76 int (*release) (struct file *);
217 struct video_device *video_devdata(struct file *file);
221 static inline void *video_drvdata(struct file *file) in video_drvdata() argument
223 return video_get_drvdata(video_devdata(file)); in video_drvdata()