Lines Matching refs:cflag
492 ubsa_parity(struct ubsa_softc *sc, tcflag_t cflag)
496 DPRINTF(("ubsa_parity: cflag = 0x%x\n", cflag));
498 if (cflag & PARENB)
499 value = (cflag & PARODD) ? UBSA_PARITY_ODD : UBSA_PARITY_EVEN;
507 ubsa_databits(struct ubsa_softc *sc, tcflag_t cflag)
511 DPRINTF(("ubsa_databits: cflag = 0x%x\n", cflag));
513 switch (cflag & CSIZE) {
529 ubsa_stopbits(struct ubsa_softc *sc, tcflag_t cflag)
533 DPRINTF(("ubsa_stopbits: cflag = 0x%x\n", cflag));
535 value = (cflag & CSTOPB) ? 1 : 0;
541 ubsa_flow(struct ubsa_softc *sc, tcflag_t cflag, tcflag_t iflag)
545 DPRINTF(("ubsa_flow: cflag = 0x%x, iflag = 0x%x\n", cflag, iflag));
548 if (cflag & CRTSCTS)