Searched defs: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 Dmct_u232.c842 struct async_icount cnow, cprev; local
865 cnow = mct_u232_port->icount;
867 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
868 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
870 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
871 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
872 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
873 ((arg & TIOCM_CTS) && (cnow
[all...]
H A Dssu100.c422 struct async_icount cnow = priv->icount; local
424 icount->cts = cnow.cts;
425 icount->dsr = cnow.dsr;
426 icount->rng = cnow.rng;
427 icount->dcd = cnow.dcd;
428 icount->rx = cnow.rx;
429 icount->tx = cnow.tx;
430 icount->frame = cnow.frame;
431 icount->overrun = cnow.overrun;
432 icount->parity = cnow
[all...]
H A Dti_usb_3410_5052.c781 struct async_icount cnow = tport->tp_icount; local
785 cnow.rx, cnow.tx);
787 icount->cts = cnow.cts;
788 icount->dsr = cnow.dsr;
789 icount->rng = cnow.rng;
790 icount->dcd = cnow.dcd;
791 icount->rx = cnow.rx;
792 icount->tx = cnow.tx;
793 icount->frame = cnow
807 struct async_icount cnow; local
[all...]
H A Dftdi_sio.c2381 struct async_icount cnow; local
2412 cnow = priv->icount;
2413 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2414 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2415 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2416 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
2419 cprev = cnow;
H A Dio_edgeport.c1630 struct async_icount cnow; local
1631 cnow = edge_port->icount;
1633 icount->cts = cnow.cts;
1634 icount->dsr = cnow.dsr;
1635 icount->rng = cnow.rng;
1636 icount->dcd = cnow.dcd;
1637 icount->rx = cnow.rx;
1638 icount->tx = cnow.tx;
1639 icount->frame = cnow.frame;
1640 icount->overrun = cnow
1686 struct async_icount cnow; local
[all...]
H A Dio_ti.c2539 struct async_icount cnow; local
2557 cnow = edge_port->icount;
2558 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2559 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
2561 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
2562 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
2563 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
2564 ((arg & TIOCM_CTS) && (cnow
[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 Dmos7840.c2230 struct async_icount cnow; local
2233 cnow = mos7840_port->icount;
2236 icount->cts = cnow.cts;
2237 icount->dsr = cnow.dsr;
2238 icount->rng = cnow.rng;
2239 icount->dcd = cnow.dcd;
2240 icount->rx = cnow.rx;
2241 icount->tx = cnow.tx;
2242 icount->frame = cnow.frame;
2243 icount->overrun = cnow
2265 struct async_icount cnow; local
[all...]
/drivers/tty/
H A Damiserial.c1229 struct async_icount cnow; local
1233 cnow = info->icount;
1235 icount->cts = cnow.cts;
1236 icount->dsr = cnow.dsr;
1237 icount->rng = cnow.rng;
1238 icount->dcd = cnow.dcd;
1239 icount->rx = cnow.rx;
1240 icount->tx = cnow.tx;
1241 icount->frame = cnow.frame;
1242 icount->overrun = cnow
1254 struct async_icount cprev, cnow; /* kernel counter temps */ local
[all...]
H A Dnozomi.c1773 const struct async_icount cnow = port->tty_icount; local
1776 ret = ((flags & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1777 ((flags & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1778 ((flags & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1779 ((flags & TIOCM_CTS) && (cnow.cts != cprev->cts));
1781 *cprev = cnow;
1790 const struct async_icount cnow = port->tty_icount; local
1792 icount->cts = cnow.cts;
1793 icount->dsr = cnow.dsr;
1794 icount->rng = cnow
[all...]
H A Dcyclades.c2642 struct cyclades_icount cnow; local
2647 cnow = info->icount; /* atomic copy */
2650 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
2651 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
2652 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
2653 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
2655 *cprev = cnow;
2670 struct cyclades_icount cnow; /* kernel counter temps */ local
2764 cnow = info->icount;
2767 cy_cflags_changed(info, arg, &cnow));
2790 struct cyclades_icount cnow; /* Used to snapshot */ local
[all...]
H A Dmxser.c1637 struct async_icount cnow; local
1642 cnow = info->icount; /* atomic copy */
1645 ret = ((arg & TIOCM_RNG) && (cnow.rng != cprev->rng)) ||
1646 ((arg & TIOCM_DSR) && (cnow.dsr != cprev->dsr)) ||
1647 ((arg & TIOCM_CD) && (cnow.dcd != cprev->dcd)) ||
1648 ((arg & TIOCM_CTS) && (cnow.cts != cprev->cts));
1650 *cprev = cnow;
1660 struct async_icount cnow; local
1729 cnow = info->icount; /* note the counters on entry */
1733 mxser_cflags_changed(info, arg, &cnow));
1818 struct async_icount cnow; local
[all...]
H A Dsynclink_gt.c1118 struct mgsl_icount cnow; /* kernel counter temps */ local
1122 cnow = info->icount;
1125 icount->cts = cnow.cts;
1126 icount->dsr = cnow.dsr;
1127 icount->rng = cnow.rng;
1128 icount->dcd = cnow.dcd;
1129 icount->rx = cnow.rx;
1130 icount->tx = cnow.tx;
1131 icount->frame = cnow.frame;
1132 icount->overrun = cnow
2771 struct mgsl_icount cprev, cnow; local
3147 struct mgsl_icount cprev, cnow; local
[all...]
H A Dsynclinkmp.c1317 struct mgsl_icount cnow; /* kernel counter temps */ local
1321 cnow = info->icount;
1324 icount->cts = cnow.cts;
1325 icount->dsr = cnow.dsr;
1326 icount->rng = cnow.rng;
1327 icount->dcd = cnow.dcd;
1328 icount->rx = cnow.rx;
1329 icount->tx = cnow.tx;
1330 icount->frame = cnow.frame;
1331 icount->overrun = cnow
3037 struct mgsl_icount cprev, cnow; local
3160 struct mgsl_icount cprev, cnow; local
[all...]
H A Dsynclink.c2676 struct mgsl_icount cprev, cnow; local
2735 cnow = info->icount;
2749 cnow.exithunt == cprev.exithunt &&
2750 cnow.rxidle == cprev.rxidle) {
2764 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2765 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2769 cprev = cnow;
2797 struct mgsl_icount cprev, cnow; local
2816 cnow = info->icount;
2821 if (cnow
2935 struct mgsl_icount cnow; /* kernel counter temps */ local
[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...]
/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.c1960 struct mgsl_icount cprev, cnow; local
2011 cnow = info->icount;
2025 cnow.exithunt == cprev.exithunt &&
2026 cnow.rxidle == cprev.rxidle) {
2040 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2041 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2045 cprev = cnow;
2068 struct mgsl_icount cprev, cnow; local
2087 cnow = info->icount;
2092 if (cnow
2197 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...]

Completed in 177 milliseconds