Lines Matching defs:cnow
2659 struct mgsl_icount cprev, cnow;
2718 cnow = info->icount;
2732 cnow.exithunt == cprev.exithunt &&
2733 cnow.rxidle == cprev.rxidle) {
2747 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2748 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2752 cprev = cnow;
2780 struct mgsl_icount cprev, cnow;
2799 cnow = info->icount;
2804 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2805 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2811 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2812 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2813 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2814 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2819 cprev = cnow;
2918 struct mgsl_icount cnow; /* kernel counter temps */
2922 cnow = info->icount;
2925 icount->cts = cnow.cts;
2926 icount->dsr = cnow.dsr;
2927 icount->rng = cnow.rng;
2928 icount->dcd = cnow.dcd;
2929 icount->rx = cnow.rx;
2930 icount->tx = cnow.tx;
2931 icount->frame = cnow.frame;
2932 icount->overrun = cnow.overrun;
2933 icount->parity = cnow.parity;
2934 icount->brk = cnow.brk;
2935 icount->buf_overrun = cnow.buf_overrun;