Searched defs:oldmode (Results 1 - 5 of 5) sorted by relevance
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | vidupdate.c | 60 vidupdate(chtype newmode, chtype oldmode, int (*outc)(char)) argument 63 chtype oldvideo = (oldmode & A_ATTRIBUTES) & ~A_COLOR; 74 short oldcolor = (short) PAIR_NUMBER(oldmode & A_COLOR); 121 /* were contained in the oldmode, and then deal with video. */ 136 _change_video(chtype newmode, chtype oldmode, int (*outc)(char)) argument 145 * The trick is that we want to pre-process the new and oldmode 153 * modes and be left with and oldmode of STANDOUT and a new mode 154 * of STANDOUT, in which case the check for newmode and oldmode 166 * oldmode and the newmode and only leave the bits that are 170 * STANDOUT and UNDERLINE to STANDOUT and REVERSE the oldmode wil [all...] |
/illumos-gate/usr/src/cmd/gcore/ |
H A D | gcore.c | 269 mode_t oldmode = umask(S_IXUSR | S_IRWXG | S_IRWXO); local 278 (void) umask(oldmode);
|
/illumos-gate/usr/src/tools/pmodes/ |
H A D | pmodes.c | 52 * d m oldmode -> newmode pathname 636 int oldmode = line.mode; local 640 if (line.mode != oldmode) { 648 oldmode, line.mode, basedir,
|
/illumos-gate/usr/src/lib/libshell/common/sh/ |
H A D | lex.c | 119 #define oldmode(lp) (lp->lexd.lastc>>CHAR_BIT) macro 412 mode = oldmode(lp); 723 if(oldmode(lp)==ST_NONE && !lp->lexd.noarg) /* in ((...)) */ 737 if(oldmode(lp)==ST_QUOTE) /* $' within "" or `` */ 758 mode = oldmode(lp); 778 if(oldmode(lp)==ST_NONE && lp->lexd.arith) /* in ((...)) */ 803 mode = oldmode(lp); 825 mode = oldmode(lp); 835 mode = oldmode(lp); 845 if(lp->lexd.warn && c==LBRACT && !lp->lex.intest && !lp->lexd.arith && oldmode(l [all...] |
/illumos-gate/usr/src/ucbcmd/tset/ |
H A D | tset.c | 431 struct termio oldmode; variable in typeref:struct:termio 477 bmove((char *)&mode, (char *)&oldmode, sizeof (mode)); 1118 * if called from terminal init, flag == -1 means reset "oldmode". 1131 if (flag < 0) { /* unconditionally reset oldmode (called from init) */ 1133 oldmode.c_lflag = oldmodes.c_lflag; 1134 oldmode.c_oflag = oldmodes.c_oflag; 1135 oldmode.c_iflag = oldmodes.c_iflag; 1136 oldmode.c_cflag = oldmodes.c_cflag; 1138 oldmode.c_cc[i] = oldmodes.c_cc[i]; 1139 ttymode = &oldmode; [all...] |
Completed in 55 milliseconds