Searched refs:cnow (Results 1 - 20 of 20) sorted by relevance

/drivers/usb/serial/
H A Dark3116.c419 struct async_icount cnow = priv->icount; local
420 icount->cts = cnow.cts;
421 icount->dsr = cnow.dsr;
422 icount->rng = cnow.rng;
423 icount->dcd = cnow.dcd;
424 icount->rx = cnow.rx;
425 icount->tx = cnow.tx;
426 icount->frame = cnow.frame;
427 icount->overrun = cnow.overrun;
428 icount->parity = cnow
[all...]
H A Dssu100.c423 struct async_icount cnow = priv->icount; local
425 icount->cts = cnow.cts;
426 icount->dsr = cnow.dsr;
427 icount->rng = cnow.rng;
428 icount->dcd = cnow.dcd;
429 icount->rx = cnow.rx;
430 icount->tx = cnow.tx;
431 icount->frame = cnow.frame;
432 icount->overrun = cnow.overrun;
433 icount->parity = cnow
[all...]
H A Dti_usb_3410_5052.c798 struct async_icount cnow = tport->tp_icount; local
802 cnow.rx, cnow.tx);
804 icount->cts = cnow.cts;
805 icount->dsr = cnow.dsr;
806 icount->rng = cnow.rng;
807 icount->dcd = cnow.dcd;
808 icount->rx = cnow.rx;
809 icount->tx = cnow.tx;
810 icount->frame = cnow
824 struct async_icount cnow; local
[all...]
H A Dmos7720.c1880 struct async_icount cnow; local
1883 cnow = mos7720_port->icount;
1885 icount->cts = cnow.cts;
1886 icount->dsr = cnow.dsr;
1887 icount->rng = cnow.rng;
1888 icount->dcd = cnow.dcd;
1889 icount->rx = cnow.rx;
1890 icount->tx = cnow.tx;
1891 icount->frame = cnow.frame;
1892 icount->overrun = cnow
1977 struct async_icount cnow; local
[all...]
H A Dmct_u232.c837 struct async_icount cnow, cprev; local
860 cnow = mct_u232_port->icount;
862 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
863 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
865 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
866 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
867 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
868 ((arg & TIOCM_CTS) && (cnow
[all...]
H A Dio_edgeport.c1629 struct async_icount cnow; local
1630 cnow = edge_port->icount;
1632 icount->cts = cnow.cts;
1633 icount->dsr = cnow.dsr;
1634 icount->rng = cnow.rng;
1635 icount->dcd = cnow.dcd;
1636 icount->rx = cnow.rx;
1637 icount->tx = cnow.tx;
1638 icount->frame = cnow.frame;
1639 icount->overrun = cnow
1685 struct async_icount cnow; local
[all...]
H A Dmos7840.c2206 struct async_icount cnow; local
2209 cnow = mos7840_port->icount;
2212 icount->cts = cnow.cts;
2213 icount->dsr = cnow.dsr;
2214 icount->rng = cnow.rng;
2215 icount->dcd = cnow.dcd;
2216 icount->rx = cnow.rx;
2217 icount->tx = cnow.tx;
2218 icount->frame = cnow.frame;
2219 icount->overrun = cnow
2241 struct async_icount cnow; local
[all...]
H A Dftdi_sio.c2351 struct async_icount cnow; local
2382 cnow = priv->icount;
2383 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2384 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2386 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2387 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2388 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2389 ((arg & TIOCM_CTS) && (cnow
[all...]
H A Dio_ti.c2540 struct async_icount cnow; local
2558 cnow = edge_port->icount;
2559 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2560 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2562 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2563 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2564 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2565 ((arg & TIOCM_CTS) && (cnow
[all...]
/drivers/tty/
H A Damiserial.c1273 struct async_icount cnow; local
1277 cnow = info->state->icount;
1279 icount->cts = cnow.cts;
1280 icount->dsr = cnow.dsr;
1281 icount->rng = cnow.rng;
1282 icount->dcd = cnow.dcd;
1283 icount->rx = cnow.rx;
1284 icount->tx = cnow.tx;
1285 icount->frame = cnow.frame;
1286 icount->overrun = cnow
1298 struct async_icount cprev, cnow; /* kernel counter temps */ local
[all...]
H A Dnozomi.c1777 const struct async_icount cnow = port->tty_icount; local
1780 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1781 ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1782 ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1783 ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts));
1785 *cprev = cnow;
1794 const struct async_icount cnow = port->tty_icount; local
1796 icount->cts = cnow.cts;
1797 icount->dsr = cnow.dsr;
1798 icount->rng = cnow
[all...]
H A Dmxser.c1640 struct async_icount cnow; local
1645 cnow = info->icount; /* atomic copy */
1648 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1649 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1650 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1651 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1653 *cprev = cnow;
1663 struct async_icount cnow; local
1732 cnow = info->icount; /* note the counters on entry */
1736 mxser_cflags_changed(info, arg, &cnow));
1821 struct async_icount cnow; local
[all...]
H A Dsynclink.c2677 struct mgsl_icount cprev, cnow; local
2736 cnow = info->icount;
2750 cnow.exithunt == cprev.exithunt &&
2751 cnow.rxidle == cprev.rxidle) {
2765 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2766 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2770 cprev = cnow;
2798 struct mgsl_icount cprev, cnow; local
2817 cnow = info->icount;
2822 if (cnow
2936 struct mgsl_icount cnow; /* kernel counter temps */ local
[all...]
H A Dsynclink_gt.c1119 struct mgsl_icount cnow; /* kernel counter temps */ local
1123 cnow = info->icount;
1126 icount->cts = cnow.cts;
1127 icount->dsr = cnow.dsr;
1128 icount->rng = cnow.rng;
1129 icount->dcd = cnow.dcd;
1130 icount->rx = cnow.rx;
1131 icount->tx = cnow.tx;
1132 icount->frame = cnow.frame;
1133 icount->overrun = cnow
2772 struct mgsl_icount cprev, cnow; local
3148 struct mgsl_icount cprev, cnow; local
[all...]
H A Dsynclinkmp.c1318 struct mgsl_icount cnow; /* kernel counter temps */ local
1322 cnow = info->icount;
1325 icount->cts = cnow.cts;
1326 icount->dsr = cnow.dsr;
1327 icount->rng = cnow.rng;
1328 icount->dcd = cnow.dcd;
1329 icount->rx = cnow.rx;
1330 icount->tx = cnow.tx;
1331 icount->frame = cnow.frame;
1332 icount->overrun = cnow
3038 struct mgsl_icount cprev, cnow; local
3161 struct mgsl_icount cprev, cnow; local
[all...]
H A Dcyclades.c2646 struct cyclades_icount cnow; local
2651 cnow = info->icount; /* atomic copy */
2654 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
2655 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
2656 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
2657 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
2659 *cprev = cnow;
2674 struct cyclades_icount cnow; /* kernel counter temps */ local
2768 cnow = info->icount;
2771 cy_cflags_changed(info, arg, &cnow));
2794 struct cyclades_icount cnow; /* Used to snapshot */ local
[all...]
/drivers/tty/serial/
H A Dserial_core.c1023 struct uart_icount cprev, cnow; local
1041 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1046 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1047 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1048 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1049 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
1062 cprev = cnow;
1081 struct uart_icount cnow; local
1085 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1088 icount->cts = cnow
[all...]
/drivers/char/pcmcia/
H A Dsynclink_cs.c1961 struct mgsl_icount cprev, cnow; local
2012 cnow = info->icount;
2026 cnow.exithunt == cprev.exithunt &&
2027 cnow.rxidle == cprev.rxidle) {
2041 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2042 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2046 cprev = cnow;
2069 struct mgsl_icount cprev, cnow; local
2088 cnow = info->icount;
2093 if (cnow
2198 struct mgsl_icount cnow; /* kernel counter temps */ local
[all...]
/drivers/net/usb/
H A Dhso.c1583 struct uart_icount cprev, cnow; local
1599 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount));
1602 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1603 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1604 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd))) {
1614 cprev = cnow;
1631 struct uart_icount cnow; local
1640 memcpy(&cnow, &tiocmget->icount, sizeof(struct uart_icount));
1643 icount->cts = cnow.cts;
1644 icount->dsr = cnow
[all...]
/drivers/staging/serial/
H A D68360serial.c1394 struct async_icount cnow; local
1397 cnow = info->state->icount;
1400 icount->cts = cnow.cts;
1401 icount->dsr = cnow.dsr;
1402 icount->rng = cnow.rng;
1403 icount->dcd = cnow.dcd;
1414 struct async_icount cnow; local
1415 /* struct async_icount_24 cnow;*/ /* kernel counter temps */
1486 cnow = info->state->icount; /* atomic copy */
1488 if (cnow
[all...]

Completed in 283 milliseconds