Lines Matching refs:ob
540 char ob[TTY_STACKBUF]; in ttydisc_write() local
568 obstart = ob; in ttydisc_write()
569 nlen = MIN(uio->uio_resid, sizeof ob); in ttydisc_write()
571 error = uiomove(ob, nlen, uio); in ttydisc_write()
744 char ob[4] = "^?\b\b"; in ttydisc_echo_force() local
748 ob[1] = c + 'A' - 1; in ttydisc_echo_force()
751 return ttyoutq_write_nofrag(&tp->t_outq, ob, 4); in ttydisc_echo_force()
754 return ttyoutq_write_nofrag(&tp->t_outq, ob, 2); in ttydisc_echo_force()
1015 char ob[3] = { 0xff, 0x00 }; in ttydisc_rint() local
1197 ob[1] = 0xff; in ttydisc_rint()
1201 ob[0] = c; in ttydisc_rint()
1210 ob[2] = c; in ttydisc_rint()
1214 ob[0] = c; in ttydisc_rint()
1220 if (ttyinq_write_nofrag(&tp->t_inq, ob, ol, quote) != 0) { in ttydisc_rint()