Home
last modified time | relevance | path

Searched defs:tty_operations (Results 1 – 1 of 1) sorted by relevance

/linux-6.15/include/linux/
Dtty_driver.h442 struct tty_operations { struct
443 struct tty_struct * (*lookup)(struct tty_driver *driver,
445 int (*install)(struct tty_driver *driver, struct tty_struct *tty);
446 void (*remove)(struct tty_driver *driver, struct tty_struct *tty);
447 int (*open)(struct tty_struct * tty, struct file * filp);
448 void (*close)(struct tty_struct * tty, struct file * filp);
449 void (*shutdown)(struct tty_struct *tty);
450 void (*cleanup)(struct tty_struct *tty);
451 ssize_t (*write)(struct tty_struct *tty, const u8 *buf, size_t count);
452 int (*put_char)(struct tty_struct *tty, u8 ch);
[all …]