Lines Matching refs:cnow
1756 const struct async_icount cnow = port->tty_icount; in ntty_cflags_changed() local
1759 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) || in ntty_cflags_changed()
1760 ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) || in ntty_cflags_changed()
1761 ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) || in ntty_cflags_changed()
1762 ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts)); in ntty_cflags_changed()
1764 *cprev = cnow; in ntty_cflags_changed()
1773 const struct async_icount cnow = port->tty_icount; in ntty_tiocgicount() local
1775 icount->cts = cnow.cts; in ntty_tiocgicount()
1776 icount->dsr = cnow.dsr; in ntty_tiocgicount()
1777 icount->rng = cnow.rng; in ntty_tiocgicount()
1778 icount->dcd = cnow.dcd; in ntty_tiocgicount()
1779 icount->rx = cnow.rx; in ntty_tiocgicount()
1780 icount->tx = cnow.tx; in ntty_tiocgicount()
1781 icount->frame = cnow.frame; in ntty_tiocgicount()
1782 icount->overrun = cnow.overrun; in ntty_tiocgicount()
1783 icount->parity = cnow.parity; in ntty_tiocgicount()
1784 icount->brk = cnow.brk; in ntty_tiocgicount()
1785 icount->buf_overrun = cnow.buf_overrun; in ntty_tiocgicount()