Lines Matching defs:cnow
2596 struct cyclades_icount cnow;
2601 cnow = info->icount; /* atomic copy */
2604 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
2605 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
2606 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
2607 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
2609 *cprev = cnow;
2624 struct cyclades_icount cnow; /* kernel counter temps */
2714 cnow = info->icount;
2717 cy_cflags_changed(info, arg, &cnow));
2740 struct cyclades_icount cnow; /* Used to snapshot */
2744 cnow = info->icount;
2747 sic->cts = cnow.cts;
2748 sic->dsr = cnow.dsr;
2749 sic->rng = cnow.rng;
2750 sic->dcd = cnow.dcd;
2751 sic->rx = cnow.rx;
2752 sic->tx = cnow.tx;
2753 sic->frame = cnow.frame;
2754 sic->overrun = cnow.overrun;
2755 sic->parity = cnow.parity;
2756 sic->brk = cnow.brk;
2757 sic->buf_overrun = cnow.buf_overrun;