Lines Matching defs:nttyparm

152 #   define nttyparm	(ep->e_nttyparm)
292 nttyparm = ttyparm;
294 nttyparm.sg_flags &= ~(ECHO | TBDELAY);
296 nttyparm.sg_flags |= CBREAK;
298 nttyparm.sg_flags |= RAW;
305 if( tty_set(fd, TCSADRAIN, &nttyparm) == SYSERR )
330 nttyparm = ttyparm;
332 nttyparm.c_iflag &= ~(IGNPAR|PARMRK|INLCR|IGNCR|ICRNL);
333 nttyparm.c_iflag |= BRKINT;
335 nttyparm.c_iflag &=
337 nttyparm.c_iflag |= (BRKINT|IGNPAR);
340 nttyparm.c_lflag &= ~(ICANON);
342 nttyparm.c_lflag &= ~(ICANON|ISIG|ECHO|ECHOK);
343 nttyparm.c_cc[VTIME] = 0;
344 nttyparm.c_cc[VMIN] = 1;
346 nttyparm.c_cc[VREPRINT] = _POSIX_DISABLE;
349 nttyparm.c_cc[VDISCARD] = _POSIX_DISABLE;
352 nttyparm.c_cc[VDSUSP] = _POSIX_DISABLE;
358 ep->e_werase = nttyparm.c_cc[VWERASE];
359 nttyparm.c_cc[VWERASE] = _POSIX_DISABLE;
367 ep->e_lnext = nttyparm.c_cc[VLNEXT];
368 nttyparm.c_cc[VLNEXT] = _POSIX_DISABLE;
376 if( tty_set(fd, TCSADRAIN, &nttyparm) == SYSERR )
458 nttyparm = ttyparm;
462 nttyparm.c_lflag |= (ECHOE|ECHOK|ECHOCTL|PENDIN|IEXTEN);
463 nttyparm.c_cc[VEOL] = ESC;
466 nttyparm.c_lflag |= (ECHOE|ECHOK);
467 nttyparm.c_cc[VEOF] = ESC; /* make ESC the eof char */
469 nttyparm.c_iflag &= ~(IGNCR|ICRNL);
470 nttyparm.c_iflag |= INLCR;
471 nttyparm.c_cc[VEOL] = '\r'; /* make CR an eol char */
472 nttyparm.c_cc[VEOL2] = ep->e_eof; /* make EOF an eol char */
474 nttyparm.c_cc[VEOL] = ep->e_eof; /* make EOF an eol char */
478 nttyparm.c_cc[VREPRINT] = _POSIX_DISABLE;
481 nttyparm.c_cc[VDISCARD] = _POSIX_DISABLE;
485 nttyparm.c_cc[VWERASE] = cntl('W');
486 ep->e_werase = nttyparm.c_cc[VWERASE];
492 nttyparm.c_cc[VLNEXT] = cntl('V');
493 ep->e_lnext = nttyparm.c_cc[VLNEXT];
499 if( tty_set(fd, TCSADRAIN, &nttyparm) == SYSERR )
814 register int delim = ((ep->e_raw&RAWMODE)?nttyparm.c_cc[VEOL]:'\n');