Lines Matching defs:cnow
1660 struct async_icount cnow;
1665 cnow = info->icount; /* atomic copy */
1668 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1669 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1670 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1671 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1673 *cprev = cnow;
1682 struct async_icount cnow;
1742 cnow = info->icount; /* note the counters on entry */
1746 mxser_cflags_changed(info, arg, &cnow));
1831 struct async_icount cnow;
1835 cnow = info->icount;
1838 icount->frame = cnow.frame;
1839 icount->brk = cnow.brk;
1840 icount->overrun = cnow.overrun;
1841 icount->buf_overrun = cnow.buf_overrun;
1842 icount->parity = cnow.parity;
1843 icount->rx = cnow.rx;
1844 icount->tx = cnow.tx;
1845 icount->cts = cnow.cts;
1846 icount->dsr = cnow.dsr;
1847 icount->rng = cnow.rng;
1848 icount->dcd = cnow.dcd;