Lines Matching refs:cnow
1722 const struct async_icount cnow = port->tty_icount; in ntty_cflags_changed() local
1725 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) in ntty_cflags_changed()
1726 || ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) in ntty_cflags_changed()
1727 || ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) in ntty_cflags_changed()
1728 || ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts)); in ntty_cflags_changed()
1730 *cprev = cnow; in ntty_cflags_changed()
1739 const struct async_icount cnow = port->tty_icount; in ntty_tiocgicount() local
1741 icount->cts = cnow.cts; in ntty_tiocgicount()
1742 icount->dsr = cnow.dsr; in ntty_tiocgicount()
1743 icount->rng = cnow.rng; in ntty_tiocgicount()
1744 icount->dcd = cnow.dcd; in ntty_tiocgicount()
1745 icount->rx = cnow.rx; in ntty_tiocgicount()
1746 icount->tx = cnow.tx; in ntty_tiocgicount()
1747 icount->frame = cnow.frame; in ntty_tiocgicount()
1748 icount->overrun = cnow.overrun; in ntty_tiocgicount()
1749 icount->parity = cnow.parity; in ntty_tiocgicount()
1750 icount->brk = cnow.brk; in ntty_tiocgicount()
1751 icount->buf_overrun = cnow.buf_overrun; in ntty_tiocgicount()