Home
last modified time | relevance | path

Searched refs:receive_buf2 (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/include/linux/
Dtty_ldisc.h213 int (*receive_buf2)(struct tty_struct *, const unsigned char *cp, member
Dtty.h593 if (ld->ops->receive_buf2) in tty_ldisc_receive_buf()
594 count = ld->ops->receive_buf2(ld->tty, p, f, count); in tty_ldisc_receive_buf()
/linux-4.4.14/drivers/tty/
Dtty_buffer.c424 if (disc->ops->receive_buf2) in receive_buf()
425 count = disc->ops->receive_buf2(tty, p, f, count); in receive_buf()
Dn_tty.c2534 .receive_buf2 = n_tty_receive_buf2,
/linux-4.4.14/Documentation/serial/
Dtty.txt105 receive_buf2() - (optional) Called by the low-level driver to hand
109 If both receive_buf() and receive_buf2() are
110 defined, receive_buf2() should be preferred.