Lines Matching refs:tty
45 typedef int tsw_open_t(struct tty *tp);
46 typedef void tsw_close_t(struct tty *tp);
47 typedef void tsw_outwakeup_t(struct tty *tp);
48 typedef void tsw_inwakeup_t(struct tty *tp);
49 typedef int tsw_ioctl_t(struct tty *tp, u_long cmd, caddr_t data,
51 typedef int tsw_cioctl_t(struct tty *tp, int unit, u_long cmd, caddr_t data,
53 typedef int tsw_param_t(struct tty *tp, struct termios *t);
54 typedef int tsw_modem_t(struct tty *tp, int sigon, int sigoff);
55 typedef int tsw_mmap_t(struct tty *tp, vm_ooffset_t offset,
57 typedef void tsw_pktnotify_t(struct tty *tp, char event);
59 typedef bool tsw_busy_t(struct tty *tp);
86 ttydevsw_open(struct tty *tp) in ttydevsw_open()
96 ttydevsw_close(struct tty *tp) in ttydevsw_close()
106 ttydevsw_outwakeup(struct tty *tp) in ttydevsw_outwakeup()
120 ttydevsw_inwakeup(struct tty *tp) in ttydevsw_inwakeup()
134 ttydevsw_ioctl(struct tty *tp, u_long cmd, caddr_t data, struct thread *td) in ttydevsw_ioctl()
144 ttydevsw_cioctl(struct tty *tp, int unit, u_long cmd, caddr_t data, in ttydevsw_cioctl()
155 ttydevsw_param(struct tty *tp, struct termios *t) in ttydevsw_param()
164 ttydevsw_modem(struct tty *tp, int sigon, int sigoff) in ttydevsw_modem()
173 ttydevsw_mmap(struct tty *tp, vm_ooffset_t offset, vm_paddr_t *paddr, in ttydevsw_mmap()
183 ttydevsw_pktnotify(struct tty *tp, char event) in ttydevsw_pktnotify()
193 ttydevsw_free(struct tty *tp) in ttydevsw_free()
202 ttydevsw_busy(struct tty *tp) in ttydevsw_busy()