• Home
  • Raw
  • Download

Lines Matching refs:cnow

1325 	struct mgsl_icount cnow;	/* kernel counter temps */  in get_icount()  local
1329 cnow = info->icount; in get_icount()
1332 icount->cts = cnow.cts; in get_icount()
1333 icount->dsr = cnow.dsr; in get_icount()
1334 icount->rng = cnow.rng; in get_icount()
1335 icount->dcd = cnow.dcd; in get_icount()
1336 icount->rx = cnow.rx; in get_icount()
1337 icount->tx = cnow.tx; in get_icount()
1338 icount->frame = cnow.frame; in get_icount()
1339 icount->overrun = cnow.overrun; in get_icount()
1340 icount->parity = cnow.parity; in get_icount()
1341 icount->brk = cnow.brk; in get_icount()
1342 icount->buf_overrun = cnow.buf_overrun; in get_icount()
3034 struct mgsl_icount cprev, cnow; in wait_mgsl_event() local
3095 cnow = info->icount; in wait_mgsl_event()
3109 cnow.exithunt == cprev.exithunt && in wait_mgsl_event()
3110 cnow.rxidle == cprev.rxidle) { in wait_mgsl_event()
3124 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) + in wait_mgsl_event()
3125 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) ); in wait_mgsl_event()
3129 cprev = cnow; in wait_mgsl_event()
3157 struct mgsl_icount cprev, cnow; in modem_input_wait() local
3176 cnow = info->icount; in modem_input_wait()
3181 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && in modem_input_wait()
3182 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) { in modem_input_wait()
3188 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) || in modem_input_wait()
3189 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) || in modem_input_wait()
3190 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) || in modem_input_wait()
3191 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) { in modem_input_wait()
3196 cprev = cnow; in modem_input_wait()