HomeSort by: relevance | last modified time | path
    Searched defs:tio (Results 1 - 8 of 8) sorted by relevancy

  /src/usr.sbin/btattach/
init_unistone.c 76 struct termios tio; local in function:init_unistone
97 if (tcgetattr(fd, &tio) != 0)
111 if (cfsetspeed(&tio, speed) != 0 ||
112 tcsetattr(fd, TCSANOW, &tio) != 0)
init_stlc2500.c 110 struct termios tio; local in function:init_stlc2500
116 if (tcgetattr(fd, &tio) != 0 ||
117 cfsetspeed(&tio, speed) != 0 ||
118 tcsetattr(fd, TCSANOW, &tio) != 0)
btattach.c 167 struct termios tio; local in function:main
263 if (tcgetattr(fd, &tio) < 0)
266 cfmakeraw(&tio);
267 tio.c_cflag |= (cflag | type->cflag);
268 tio.c_cflag &= ~Cflag;
270 if (cfsetspeed(&tio, init_speed) < 0
271 || tcsetattr(fd, TCSANOW, &tio) < 0
280 if (cfsetspeed(&tio, speed) < 0
281 || tcsetattr(fd, TCSANOW, &tio) < 0)
559 struct termios tio; local in function:test
    [all...]
  /src/tests/kernel/tty/
t_pr.c 162 struct termios tio; local in function:ATF_TC_BODY
173 rump_sys_ioctl(fd, TIOCGETA, &tio);
  /src/tests/kernel/kqueue/read/
t_ttypty.c 64 struct termios tio; local in function:h_check
83 RL(tcgetattr(acurrent, &tio));
84 tio.c_oflag &= ~ONLCR;
85 RL(tcsetattr(acurrent, TCSADRAIN, &tio));
  /src/usr.bin/qsubst/
qsubst.c 170 struct termios tio; local in function:sigtstp
172 if (tcgetattr(0, &tio) < 0) {
178 tcsetattr(0, TCSADRAIN | TCSASOFT, &tio);
233 struct termios tio; local in function:getc_cbreak
237 if (tcgetattr(0, &tio) < 0)
239 otio = tio;
240 tio.c_lflag &= ~(ICANON | ECHOKE | ECHOE | ECHO | ECHONL);
241 tio.c_cc[VMIN] = 1;
242 tio.c_cc[VTIME] = 0;
243 tcsetattr(0, TCSANOW | TCSASOFT, &tio);
    [all...]
  /src/usr.bin/resize/
resize.c 329 struct termio tio; local in function:main
331 struct termios tio; local in function:main
453 tio = tioorig;
454 UIntClr(tio.c_iflag, (ICRNL | IUCLC));
455 UIntClr(tio.c_lflag, (ICANON | ECHO));
456 tio.c_cflag |= CS8;
457 tio.c_cc[VMIN] = 6;
458 tio.c_cc[VTIME] = 1;
461 tio = tioorig;
462 UIntClr(tio.c_iflag, ICRNL)
    [all...]
  /src/usr.bin/rfcomm_sppd/
rfcomm_sppd.c 102 static struct termios tio; /* stored termios for reset on exit */ variable in typeref:struct:termios
239 tio = t;
243 if (tio.c_lflag != t.c_lflag ||
244 tio.c_iflag != t.c_iflag) {
686 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio);

Completed in 16 milliseconds