Lines Matching refs:cnow

1952 	struct mgsl_icount cprev, cnow;  in wait_events()  local
2003 cnow = info->icount; in wait_events()
2017 cnow.exithunt == cprev.exithunt && in wait_events()
2018 cnow.rxidle == cprev.rxidle) { in wait_events()
2032 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) + in wait_events()
2033 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) ); in wait_events()
2037 cprev = cnow; in wait_events()
2060 struct mgsl_icount cprev, cnow; in modem_input_wait() local
2079 cnow = info->icount; in modem_input_wait()
2084 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && in modem_input_wait()
2085 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) { in modem_input_wait()
2091 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) || in modem_input_wait()
2092 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) || in modem_input_wait()
2093 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) || in modem_input_wait()
2094 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) { in modem_input_wait()
2099 cprev = cnow; in modem_input_wait()
2189 struct mgsl_icount cnow; /* kernel counter temps */ in mgslpc_get_icount() local
2193 cnow = info->icount; in mgslpc_get_icount()
2196 icount->cts = cnow.cts; in mgslpc_get_icount()
2197 icount->dsr = cnow.dsr; in mgslpc_get_icount()
2198 icount->rng = cnow.rng; in mgslpc_get_icount()
2199 icount->dcd = cnow.dcd; in mgslpc_get_icount()
2200 icount->rx = cnow.rx; in mgslpc_get_icount()
2201 icount->tx = cnow.tx; in mgslpc_get_icount()
2202 icount->frame = cnow.frame; in mgslpc_get_icount()
2203 icount->overrun = cnow.overrun; in mgslpc_get_icount()
2204 icount->parity = cnow.parity; in mgslpc_get_icount()
2205 icount->brk = cnow.brk; in mgslpc_get_icount()
2206 icount->buf_overrun = cnow.buf_overrun; in mgslpc_get_icount()