Searched refs:ctrlout (Results 1 – 2 of 2) sorted by relevance
563 acm->ctrlout = ACM_CTRL_DTR | ACM_CTRL_RTS; in acm_port_activate()564 if (acm_set_control(acm, acm->ctrlout) < 0 && in acm_port_activate()586 acm->ctrlout = 0; in acm_port_activate()587 acm_set_control(acm, acm->ctrlout); in acm_port_activate()620 acm_set_control(acm, acm->ctrlout = 0); in acm_port_shutdown()752 return (acm->ctrlout & ACM_CTRL_DTR ? TIOCM_DTR : 0) | in acm_tty_tiocmget()753 (acm->ctrlout & ACM_CTRL_RTS ? TIOCM_RTS : 0) | in acm_tty_tiocmget()766 newctrl = acm->ctrlout; in acm_tty_tiocmset()774 if (acm->ctrlout == newctrl) in acm_tty_tiocmset()776 return acm_set_control(acm, acm->ctrlout = newctrl); in acm_tty_tiocmset()[all …]
108 unsigned int ctrlout; /* output control lines (DTR, RTS) */ member