Searched defs:tty_ldisc_ops (Results 1 – 2 of 2) sorted by relevance
| /kernel/linux/linux-5.10/include/linux/ |
| D | tty_ldisc.h | 175 struct tty_ldisc_ops { struct 176 int magic; 177 char *name; 178 int num; 179 int flags; 184 int (*open)(struct tty_struct *); 185 void (*close)(struct tty_struct *); 186 void (*flush_buffer)(struct tty_struct *tty); 187 ssize_t (*read)(struct tty_struct *tty, struct file *file, 190 ssize_t (*write)(struct tty_struct *tty, struct file *file, [all …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | tty_ldisc.h | 231 struct tty_ldisc_ops { struct 232 char *name; 233 int num; 238 int (*open)(struct tty_struct *tty); 239 void (*close)(struct tty_struct *tty); 240 void (*flush_buffer)(struct tty_struct *tty); 241 ssize_t (*read)(struct tty_struct *tty, struct file *file, u8 *buf, 243 ssize_t (*write)(struct tty_struct *tty, struct file *file, 245 int (*ioctl)(struct tty_struct *tty, unsigned int cmd, 270 struct tty_ldisc_ops *ops; argument
|