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