Lines Matching refs:tty
353 int (*install)(struct tty_driver *driver, struct tty_struct *tty);
354 void (*remove)(struct tty_driver *driver, struct tty_struct *tty);
355 int (*open)(struct tty_struct * tty, struct file * filp);
356 void (*close)(struct tty_struct * tty, struct file * filp);
357 void (*shutdown)(struct tty_struct *tty);
358 void (*cleanup)(struct tty_struct *tty);
359 ssize_t (*write)(struct tty_struct *tty, const u8 *buf, size_t count);
360 int (*put_char)(struct tty_struct *tty, u8 ch);
361 void (*flush_chars)(struct tty_struct *tty);
362 unsigned int (*write_room)(struct tty_struct *tty);
363 unsigned int (*chars_in_buffer)(struct tty_struct *tty);
364 int (*ioctl)(struct tty_struct *tty,
366 long (*compat_ioctl)(struct tty_struct *tty,
368 void (*set_termios)(struct tty_struct *tty, const struct ktermios *old);
369 void (*throttle)(struct tty_struct * tty);
370 void (*unthrottle)(struct tty_struct * tty);
371 void (*stop)(struct tty_struct *tty);
372 void (*start)(struct tty_struct *tty);
373 void (*hangup)(struct tty_struct *tty);
374 int (*break_ctl)(struct tty_struct *tty, int state);
375 void (*flush_buffer)(struct tty_struct *tty);
376 void (*set_ldisc)(struct tty_struct *tty);
377 void (*wait_until_sent)(struct tty_struct *tty, int timeout);
378 void (*send_xchar)(struct tty_struct *tty, char ch);
379 int (*tiocmget)(struct tty_struct *tty);
380 int (*tiocmset)(struct tty_struct *tty,
382 int (*resize)(struct tty_struct *tty, struct winsize *ws);
383 int (*get_icount)(struct tty_struct *tty,
385 int (*get_serial)(struct tty_struct *tty, struct serial_struct *p);
386 int (*set_serial)(struct tty_struct *tty, struct serial_struct *p);
387 void (*show_fdinfo)(struct tty_struct *tty, struct seq_file *m);