Lines Matching refs:cnow

1310 	struct mgsl_icount cnow;	/* kernel counter temps */  in get_icount()  local
1314 cnow = info->icount; in get_icount()
1317 icount->cts = cnow.cts; in get_icount()
1318 icount->dsr = cnow.dsr; in get_icount()
1319 icount->rng = cnow.rng; in get_icount()
1320 icount->dcd = cnow.dcd; in get_icount()
1321 icount->rx = cnow.rx; in get_icount()
1322 icount->tx = cnow.tx; in get_icount()
1323 icount->frame = cnow.frame; in get_icount()
1324 icount->overrun = cnow.overrun; in get_icount()
1325 icount->parity = cnow.parity; in get_icount()
1326 icount->brk = cnow.brk; in get_icount()
1327 icount->buf_overrun = cnow.buf_overrun; in get_icount()
2999 struct mgsl_icount cprev, cnow; in wait_mgsl_event() local
3060 cnow = info->icount; in wait_mgsl_event()
3074 cnow.exithunt == cprev.exithunt && in wait_mgsl_event()
3075 cnow.rxidle == cprev.rxidle) { in wait_mgsl_event()
3089 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) + in wait_mgsl_event()
3090 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) ); in wait_mgsl_event()
3094 cprev = cnow; in wait_mgsl_event()
3122 struct mgsl_icount cprev, cnow; in modem_input_wait() local
3141 cnow = info->icount; in modem_input_wait()
3146 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && in modem_input_wait()
3147 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) { in modem_input_wait()
3153 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) || in modem_input_wait()
3154 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) || in modem_input_wait()
3155 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) || in modem_input_wait()
3156 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) { in modem_input_wait()
3161 cprev = cnow; in modem_input_wait()