Lines Matching refs:cnow
1696 const struct async_icount cnow = port->tty_icount; in ntty_cflags_changed() local
1699 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) in ntty_cflags_changed()
1700 || ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) in ntty_cflags_changed()
1701 || ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) in ntty_cflags_changed()
1702 || ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts)); in ntty_cflags_changed()
1704 *cprev = cnow; in ntty_cflags_changed()
1713 const struct async_icount cnow = port->tty_icount; in ntty_tiocgicount() local
1715 icount->cts = cnow.cts; in ntty_tiocgicount()
1716 icount->dsr = cnow.dsr; in ntty_tiocgicount()
1717 icount->rng = cnow.rng; in ntty_tiocgicount()
1718 icount->dcd = cnow.dcd; in ntty_tiocgicount()
1719 icount->rx = cnow.rx; in ntty_tiocgicount()
1720 icount->tx = cnow.tx; in ntty_tiocgicount()
1721 icount->frame = cnow.frame; in ntty_tiocgicount()
1722 icount->overrun = cnow.overrun; in ntty_tiocgicount()
1723 icount->parity = cnow.parity; in ntty_tiocgicount()
1724 icount->brk = cnow.brk; in ntty_tiocgicount()
1725 icount->buf_overrun = cnow.buf_overrun; in ntty_tiocgicount()