Home
last modified time | relevance | path

Searched refs:combits (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/sys/dev/usb/
H A Ducycom.c1024 u_char combits; in tiocm_to_ucycom() local
1027 combits = 0; in tiocm_to_ucycom()
1029 SET(combits, UCYCOM_DTR); in tiocm_to_ucycom()
1031 SET(combits, UCYCOM_RTS); in tiocm_to_ucycom()
1035 CLR(sc->sc_mcr, combits); in tiocm_to_ucycom()
1039 SET(sc->sc_mcr, combits); in tiocm_to_ucycom()
1044 SET(sc->sc_mcr, combits); in tiocm_to_ucycom()
1056 u_char combits; in ucycom_to_tiocm() local
1059 combits = sc->sc_mcr; in ucycom_to_tiocm()
1060 if (ISSET(combits, UCYCOM_DTR)) in ucycom_to_tiocm()
[all …]
H A Ducom.c964 u_char combits; in tiocm_to_ucom() local
966 combits = 0; in tiocm_to_ucom()
968 SET(combits, UMCR_DTR); in tiocm_to_ucom()
970 SET(combits, UMCR_RTS); in tiocm_to_ucom()
975 CLR(sc->sc_mcr, combits); in tiocm_to_ucom()
979 SET(sc->sc_mcr, combits); in tiocm_to_ucom()
984 SET(sc->sc_mcr, combits); in tiocm_to_ucom()
990 if (how == TIOCMSET || ISSET(combits, UMCR_DTR)) in tiocm_to_ucom()
992 if (how == TIOCMSET || ISSET(combits, UMCR_RTS)) in tiocm_to_ucom()
999 u_char combits; in ucom_to_tiocm() local
[all …]
/netbsd-src/sys/arch/arm/xilinx/
H A Dzynq_uart.c1039 u_char combits; in tiocm_to_zynquart() local
1041 combits = 0; in tiocm_to_zynquart()
1043 SET(combits, MODEMCR_DTR); in tiocm_to_zynquart()
1045 SET(combits, MODEMCR_RTS); in tiocm_to_zynquart()
1049 CLR(sc->sc_mcr, combits); in tiocm_to_zynquart()
1053 SET(sc->sc_mcr, combits); in tiocm_to_zynquart()
1058 SET(sc->sc_mcr, combits); in tiocm_to_zynquart()
1072 uint32_t combits; in zynquart_to_tiocm() local
1075 combits = sc->sc_mcr; in zynquart_to_tiocm()
1076 if (ISSET(combits, MODEMCR_DTR)) in zynquart_to_tiocm()
[all …]
/netbsd-src/sys/dev/ic/
H A Dcom.c1447 u_char combits; in tiocm_to_com() local
1449 combits = 0; in tiocm_to_com()
1451 SET(combits, MCR_DTR); in tiocm_to_com()
1453 SET(combits, MCR_RTS); in tiocm_to_com()
1457 CLR(sc->sc_mcr, combits); in tiocm_to_com()
1461 SET(sc->sc_mcr, combits); in tiocm_to_com()
1466 SET(sc->sc_mcr, combits); in tiocm_to_com()
1483 u_char combits; in com_to_tiocm() local
1486 combits = sc->sc_mcr; in com_to_tiocm()
1487 if (ISSET(combits, MCR_DT in com_to_tiocm()
[all...]
/netbsd-src/sys/arch/arm/clps711x/
H A Dclpscom.c891 uint32_t combits; in clpscom_to_tiocm() local
894 combits = sc->sc_ms; in clpscom_to_tiocm()
895 if (ISSET(combits, SYSFLG_DCD)) in clpscom_to_tiocm()
897 if (ISSET(combits, SYSFLG_CTS)) in clpscom_to_tiocm()
899 if (ISSET(combits, SYSFLG_DSR)) in clpscom_to_tiocm()