Lines Matching refs:cnow
1716 const struct async_icount cnow = port->tty_icount; in ntty_cflags_changed() local
1719 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) in ntty_cflags_changed()
1720 || ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) in ntty_cflags_changed()
1721 || ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) in ntty_cflags_changed()
1722 || ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts)); in ntty_cflags_changed()
1724 *cprev = cnow; in ntty_cflags_changed()
1733 const struct async_icount cnow = port->tty_icount; in ntty_tiocgicount() local
1735 icount->cts = cnow.cts; in ntty_tiocgicount()
1736 icount->dsr = cnow.dsr; in ntty_tiocgicount()
1737 icount->rng = cnow.rng; in ntty_tiocgicount()
1738 icount->dcd = cnow.dcd; in ntty_tiocgicount()
1739 icount->rx = cnow.rx; in ntty_tiocgicount()
1740 icount->tx = cnow.tx; in ntty_tiocgicount()
1741 icount->frame = cnow.frame; in ntty_tiocgicount()
1742 icount->overrun = cnow.overrun; in ntty_tiocgicount()
1743 icount->parity = cnow.parity; in ntty_tiocgicount()
1744 icount->brk = cnow.brk; in ntty_tiocgicount()
1745 icount->buf_overrun = cnow.buf_overrun; in ntty_tiocgicount()