• Home
  • Raw
  • Download

Lines Matching refs:cnow

2671 	struct mgsl_icount cprev, cnow;  in mgsl_wait_event()  local
2730 cnow = info->icount; in mgsl_wait_event()
2744 cnow.exithunt == cprev.exithunt && in mgsl_wait_event()
2745 cnow.rxidle == cprev.rxidle) { in mgsl_wait_event()
2759 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) + in mgsl_wait_event()
2760 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) ); in mgsl_wait_event()
2764 cprev = cnow; in mgsl_wait_event()
2792 struct mgsl_icount cprev, cnow; in modem_input_wait() local
2811 cnow = info->icount; in modem_input_wait()
2816 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && in modem_input_wait()
2817 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) { in modem_input_wait()
2823 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) || in modem_input_wait()
2824 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) || in modem_input_wait()
2825 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) || in modem_input_wait()
2826 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) { in modem_input_wait()
2831 cprev = cnow; in modem_input_wait()
2930 struct mgsl_icount cnow; /* kernel counter temps */ in msgl_get_icount() local
2934 cnow = info->icount; in msgl_get_icount()
2937 icount->cts = cnow.cts; in msgl_get_icount()
2938 icount->dsr = cnow.dsr; in msgl_get_icount()
2939 icount->rng = cnow.rng; in msgl_get_icount()
2940 icount->dcd = cnow.dcd; in msgl_get_icount()
2941 icount->rx = cnow.rx; in msgl_get_icount()
2942 icount->tx = cnow.tx; in msgl_get_icount()
2943 icount->frame = cnow.frame; in msgl_get_icount()
2944 icount->overrun = cnow.overrun; in msgl_get_icount()
2945 icount->parity = cnow.parity; in msgl_get_icount()
2946 icount->brk = cnow.brk; in msgl_get_icount()
2947 icount->buf_overrun = cnow.buf_overrun; in msgl_get_icount()