/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | _addch.c | 49 addch(chtype ch) argument 51 return (waddch(stdscr, ch));
|
H A D | _addwch.c | 40 addwch(chtype ch) argument 42 return (waddwch(stdscr, ch));
|
H A D | _echochar.c | 49 echochar(chtype ch) argument 51 return (wechochar(stdscr, ch));
|
H A D | _echowchar.c | 40 echowchar(chtype ch) argument 42 return (wechowchar(stdscr, ch));
|
H A D | _unctrl.c | 48 unctrl(int ch) argument 50 return (_unctrl[(unsigned) ch]);
|
H A D | _mvaddch.c | 40 mvaddch(int y, int x, chtype ch) argument 42 return (wmove(stdscr, y, x) == ERR ? ERR : waddch(stdscr, ch));
|
H A D | _mvaddwch.c | 40 mvaddwch(int y, int x, chtype ch) argument 42 return (mvwaddwch(stdscr, y, x, ch));
|
H A D | pechochar.c | 48 * pechochar(WINDOW *pad, chtype ch) is functionally equivalent to 49 * waddch(WINDOW *pad, chtype ch), prefresh(WINDOW *pad, `the same arguments 57 pechochar(WINDOW *pad, chtype ch) argument 71 rv = wechochar(padwin, ch); 76 return (wechochar(pad, ch));
|
H A D | pechowchar.c | 39 * pechochar(WINDOW *pad, chtype ch) is functionally equivalent to 40 * waddch(WINDOW *pad, chtype ch), prefresh(WINDOW *pad, `the same arguments 48 pechowchar(WINDOW *pad, chtype ch) argument 62 rv = wechowchar(padwin, ch); 67 return (wechowchar(pad, ch));
|
H A D | ungetch.c | 50 ungetch(int ch) argument 57 * Here is commented out because 'ch' should deal with a single byte 58 * character only. So ISCBIT(ch) is 0 every time. 62 * if (ISCBIT(ch)) { 63 * r = RBYTE(ch); 64 * ch = LBYTE(ch); 74 inputQ[0] = -ch;
|
H A D | wechochar.c | 52 * wechochar(WINDOW *win, chtype ch) is functionally equivalent to 53 * waddch(WINDOW *win, chtype ch), wrefresh(WINDOW *win) 57 wechochar(WINDOW *win, chtype ch) argument 63 rv = waddch(win, ch);
|
H A D | wechowchar.c | 43 * wechowchar(WINDOW *win, chtype ch) is functionally equivalent to 44 * waddch(WINDOW *win, chtype ch), wrefresh(WINDOW *win) 48 wechowchar(WINDOW *win, chtype ch) argument 54 rv = waddwch(win, ch);
|
H A D | _mvwaddch.c | 49 mvwaddch(WINDOW *win, int y, int x, chtype ch) argument 51 return (wmove(win, y, x) == ERR ? ERR : waddch(win, ch));
|
H A D | _mvwaddchnst.c | 49 mvwaddchnstr(WINDOW *win, int y, int x, chtype *ch, int n) argument 51 return (wmove(win, y, x) == ERR ? ERR : waddchnstr(win, ch, n));
|
H A D | _mvwaddchstr.c | 49 mvwaddchstr(WINDOW *win, int y, int x, chtype *ch) argument 51 return (wmove(win, y, x) == ERR ? ERR : waddchstr(win, ch));
|
H A D | _mvwaddwch.c | 40 mvwaddwch(WINDOW *win, int y, int x, chtype ch) argument 42 return ((wmove(win, y, x) == ERR ? ERR : waddwch(win, ch)));
|
/osnet-11/usr/src/lib/libc/port/stdio/ |
H A D | fputc.c | 42 fputc(int ch, FILE *iop) argument 44 return (putc(ch, iop));
|
H A D | _flsbuf.c | 45 _flsbuf(int ch, FILE *iop) /* flush (write) buffer, save ch, */ argument 67 if ((*iop->_ptr++ = (unsigned char)ch) == '\n') 73 uch = (unsigned char)ch; 86 (void) PUTC(ch, iop); /* recursive call */ 89 return ((iop->_flag & _IOERR) ? EOF : (unsigned char)ch);
|
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | killchar.c | 49 int ch; local 60 ch = cur_term->_shell.c_cc[VERASE]; 62 return __m_return_int("erasechar", ch); 68 int ch; local 79 ch = cur_term->_shell.c_cc[VKILL]; 81 return __m_return_int("killchar", ch);
|
H A D | winch.c | 50 chtype ch; local 56 ch = __m_cc_chtype(&w->_line[w->_cury][w->_curx]); 58 return __m_return_chtype("winch", ch);
|
H A D | inch.c | 49 chtype ch; local 55 ch = winch(stdscr); 57 return __m_return_chtype("inch", ch); 64 chtype ch; local 70 if ((ch = (chtype) wmove(stdscr, y, x)) != (chtype) ERR) 71 ch = winch(stdscr); 73 return __m_return_chtype("mvinch", ch); 81 chtype ch; local 87 if ((ch = (chtype) wmove(w, y, x)) != (chtype) ERR) 88 ch [all...] |
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | killchar.c | 54 char ch; local 62 ch = (char)PTERMIOS(_shell)->c_cc[VERASE]; 64 return (ch); 70 char ch; local 78 ch = (char)PTERMIOS(_shell)->c_cc[VKILL]; 80 return (ch);
|
H A D | winch.c | 52 chtype ch; local 54 ch = __m_cc_chtype(&w->_line[w->_cury][w->_curx]); 56 return (ch);
|
H A D | keyname.c | 52 keyname(int ch) argument 61 if ((*p)[1] == ch) { 68 if ((str = unctrl(ch)) == NULL) {
|
/osnet-11/usr/src/lib/libxcurses2/src/libc/wide/ |
H A D | wio_get.c | 67 int ch; local 83 if ((ch = (*wio->get)(wio->object)) == EOF) { 87 wio->_mb[wio->_next] = (unsigned char)ch;
|