Searched defs:tty (Results 1 - 5 of 5) sorted by relevance

/net/irda/ircomm/
H A DMakefile5 obj-$(CONFIG_IRCOMM) += ircomm.o ircomm-tty.o
8 ircomm-tty-y := ircomm_tty.o ircomm_tty_attach.o ircomm_tty_ioctl.o ircomm_param.o
H A Dircomm_tty_ioctl.c32 #include <linux/tty.h>
54 struct tty_struct *tty)
64 cflag = tty->termios.c_cflag;
83 baud = tty_get_baud_rate(tty);
110 if (I_INPCK(self->tty))
112 if (I_BRKINT(driver->tty) || I_PARMRK(driver->tty))
119 if (I_IGNPAR(driver->tty))
122 if (I_IGNBRK(self->tty)) {
128 if (I_IGNPAR(self->tty))
53 ircomm_tty_change_speed(struct ircomm_tty_cb *self, struct tty_struct *tty) argument
146 ircomm_tty_set_termios(struct tty_struct *tty, struct ktermios *old_termios) argument
196 ircomm_tty_tiocmget(struct tty_struct *tty) argument
221 ircomm_tty_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) argument
372 ircomm_tty_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg) argument
[all...]
H A Dircomm_tty_attach.c131 struct tty_struct *tty; local
145 tty = tty_port_tty_get(&self->port);
146 if (tty) {
147 tty->hw_stopped = 1;
148 tty_kref_put(tty);
405 struct tty_struct *tty; local
412 tty = tty_port_tty_get(&self->port);
413 if (!tty)
420 tty->hw_stopped = 1;
424 tty_kref_put(tty);
560 struct tty_struct *tty; local
[all...]
H A Dircomm_tty.c38 #include <linux/tty.h>
54 struct tty_struct *tty);
55 static int ircomm_tty_open(struct tty_struct *tty, struct file *filp);
56 static void ircomm_tty_close(struct tty_struct * tty, struct file *filp);
57 static int ircomm_tty_write(struct tty_struct * tty,
59 static int ircomm_tty_write_room(struct tty_struct *tty);
60 static void ircomm_tty_throttle(struct tty_struct *tty);
61 static void ircomm_tty_unthrottle(struct tty_struct *tty);
62 static int ircomm_tty_chars_in_buffer(struct tty_struct *tty);
63 static void ircomm_tty_flush_buffer(struct tty_struct *tty);
275 ircomm_tty_block_til_ready(struct ircomm_tty_cb *self, struct tty_struct *tty, struct file *filp) argument
382 ircomm_tty_install(struct tty_driver *driver, struct tty_struct *tty) argument
437 ircomm_tty_open(struct tty_struct *tty, struct file *filp) argument
519 ircomm_tty_close(struct tty_struct *tty, struct file *filp) argument
546 ircomm_tty_flush_buffer(struct tty_struct *tty) argument
571 struct tty_struct *tty; local
632 ircomm_tty_write(struct tty_struct *tty, const unsigned char *buf, int count) argument
765 ircomm_tty_write_room(struct tty_struct *tty) argument
805 ircomm_tty_wait_until_sent(struct tty_struct *tty, int timeout) argument
842 ircomm_tty_throttle(struct tty_struct *tty) argument
873 ircomm_tty_unthrottle(struct tty_struct *tty) argument
903 ircomm_tty_chars_in_buffer(struct tty_struct *tty) argument
967 ircomm_tty_hangup(struct tty_struct *tty) argument
1000 ircomm_tty_send_xchar(struct tty_struct *tty, char ch) argument
1011 ircomm_tty_start(struct tty_struct *tty) argument
1024 ircomm_tty_stop(struct tty_struct *tty) argument
1043 struct tty_struct *tty; local
1110 struct tty_struct *tty; local
1191 struct tty_struct *tty; local
1222 struct tty_struct *tty; local
[all...]
/net/bluetooth/rfcomm/
H A Dtty.c30 #include <linux/tty.h>
111 static int rfcomm_dev_activate(struct tty_port *port, struct tty_struct *tty) argument
118 set_bit(TTY_IO_ERROR, &tty->flags);
320 struct device *tty; local
330 tty = tty_port_register_device(&dev->port, rfcomm_tty_driver,
332 if (IS_ERR(tty)) {
334 return PTR_ERR(tty);
337 dev->tty_dev = tty;
442 struct tty_struct *tty; local
468 tty
686 rfcomm_tty_cleanup(struct tty_struct *tty) argument
709 rfcomm_tty_install(struct tty_driver *driver, struct tty_struct *tty) argument
747 rfcomm_tty_open(struct tty_struct *tty, struct file *filp) argument
773 rfcomm_tty_close(struct tty_struct *tty, struct file *filp) argument
783 rfcomm_tty_write(struct tty_struct *tty, const unsigned char *buf, int count) argument
812 rfcomm_tty_write_room(struct tty_struct *tty) argument
825 rfcomm_tty_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg) argument
870 rfcomm_tty_set_termios(struct tty_struct *tty, struct ktermios *old) argument
1009 rfcomm_tty_throttle(struct tty_struct *tty) argument
1018 rfcomm_tty_unthrottle(struct tty_struct *tty) argument
1027 rfcomm_tty_chars_in_buffer(struct tty_struct *tty) argument
1042 rfcomm_tty_flush_buffer(struct tty_struct *tty) argument
1055 rfcomm_tty_send_xchar(struct tty_struct *tty, char ch) argument
1060 rfcomm_tty_wait_until_sent(struct tty_struct *tty, int timeout) argument
1065 rfcomm_tty_hangup(struct tty_struct *tty) argument
1074 rfcomm_tty_tiocmget(struct tty_struct *tty) argument
1083 rfcomm_tty_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) argument
[all...]

Completed in 46 milliseconds