Lines Matching refs:file
203 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
204 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
205 __poll_t (*poll) (struct file *, struct poll_table_struct *);
206 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
208 long (*compat_ioctl32) (struct file *, unsigned int, unsigned long);
210 unsigned long (*get_unmapped_area) (struct file *, unsigned long,
212 int (*mmap) (struct file *, struct vm_area_struct *);
213 int (*open) (struct file *);
214 int (*release) (struct file *);
510 struct video_device *video_devdata(struct file *file);
521 static inline void *video_drvdata(struct file *file) in video_drvdata() argument
523 return video_get_drvdata(video_devdata(file)); in video_drvdata()