Searched defs:file_operations (Results 1 – 1 of 1) sorted by relevance
/linux-3.3/include/linux/ |
D | fs.h | 1598 struct file_operations { struct 1599 struct module *owner; 1600 loff_t (*llseek) (struct file *, loff_t, int); 1601 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *); 1602 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); 1603 ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t); 1604 ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t); 1605 int (*readdir) (struct file *, void *, filldir_t); 1606 unsigned int (*poll) (struct file *, struct poll_table_struct *); 1607 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long); [all …]
|