Searched defs:tty_operations (Results 1 – 2 of 2) sorted by relevance
| /kernel/linux/linux-5.10/include/linux/ |
| D | tty_driver.h | 246 struct tty_operations { struct 247 struct tty_struct * (*lookup)(struct tty_driver *driver, 249 int (*install)(struct tty_driver *driver, struct tty_struct *tty); 250 void (*remove)(struct tty_driver *driver, struct tty_struct *tty); 251 int (*open)(struct tty_struct * tty, struct file * filp); 252 void (*close)(struct tty_struct * tty, struct file * filp); 253 void (*shutdown)(struct tty_struct *tty); 254 void (*cleanup)(struct tty_struct *tty); 255 int (*write)(struct tty_struct * tty, 257 int (*put_char)(struct tty_struct *tty, unsigned char ch); [all …]
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | tty_driver.h | 357 struct tty_operations { struct 358 struct tty_struct * (*lookup)(struct tty_driver *driver, 360 int (*install)(struct tty_driver *driver, struct tty_struct *tty); 361 void (*remove)(struct tty_driver *driver, struct tty_struct *tty); 362 int (*open)(struct tty_struct * tty, struct file * filp); 363 void (*close)(struct tty_struct * tty, struct file * filp); 364 void (*shutdown)(struct tty_struct *tty); 365 void (*cleanup)(struct tty_struct *tty); 366 ssize_t (*write)(struct tty_struct *tty, const u8 *buf, size_t count); 367 int (*put_char)(struct tty_struct *tty, u8 ch); [all …]
|