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