Searched defs:ttyparm (Results 1 - 2 of 2) sorted by relevance

/ast/src/cmd/ie/
H A Dedit.c115 static struct termios ttyparm; /* initial tty parameters */ variable in typeref:struct:termios
244 /*** don't do tty_set unless ttyparm has valid data ***/
245 if(savefd<0 || tty_set(fd, TCSANOW, &ttyparm) == SYSERR)
269 if(tty_get(fd,&ttyparm) == SYSERR)
273 if(!(ttyparm.sg_flags&ECHO) || (ttyparm.sg_flags&LCASE))
275 nttyparm = ttyparm;
282 editb.e_erase = ttyparm.sg_erase;
283 editb.e_kill = ttyparm.sg_kill;
287 editb.e_ttyspeed = (ttyparm
[all...]
/ast/src/cmd/ksh93/edit/
H A Dedit.c151 # define ttyparm (ep->e_ttyparm) macro
252 /*** don't do tty_set unless ttyparm has valid data ***/
253 if(tty_set(fd, TCSANOW, &ttyparm) == SYSERR)
280 if(tty_get(fd,&ttyparm) == SYSERR)
284 if(ttyparm.sg_flags&LCASE)
286 if(!(ttyparm.sg_flags&ECHO))
292 nttyparm = ttyparm;
300 ep->e_erase = ttyparm.sg_erase;
301 ep->e_kill = ttyparm.sg_kill;
307 ep->e_ttyspeed = (ttyparm
[all...]

Completed in 10 milliseconds