Lines Matching refs:cprev
1950 struct mgsl_icount cprev, cnow; in wait_events() local
1979 cprev = info->icount; in wait_events()
2015 cnow.exithunt == cprev.exithunt && in wait_events()
2016 cnow.rxidle == cprev.rxidle) { in wait_events()
2030 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) + in wait_events()
2031 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) ); in wait_events()
2035 cprev = cnow; in wait_events()
2058 struct mgsl_icount cprev, cnow; in modem_input_wait() local
2063 cprev = info->icount; in modem_input_wait()
2082 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && in modem_input_wait()
2083 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) { in modem_input_wait()
2089 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) || in modem_input_wait()
2090 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) || in modem_input_wait()
2091 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) || in modem_input_wait()
2092 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) { in modem_input_wait()
2097 cprev = cnow; in modem_input_wait()