/osnet-11/usr/src/lib/libcurses/screen/ |
H A D | _unctrl.c | 48 unctrl(int ch) argument 50 return (_unctrl[(unsigned) ch]);
|
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 | _mvaddwch.c | 40 mvaddwch(int y, int x, chtype ch) argument 42 return (mvwaddwch(stdscr, y, x, ch));
|
H A D | unctrl.h | 49 #define unctrl(ch) (_unctrl[(unsigned)ch])
|
/osnet-11/usr/src/lib/cfgadm_plugins/ib/common/ |
H A D | cfga_conf.h | 59 #define isunary(ch) ((ch) == '~' || (ch) == '-') 60 #define iswhite(ch) ((ch) == ' ' || (ch) == '\t') 61 #define isnewline(ch) ((ch) == '\n' || (ch) == '\r' || (ch) [all...] |
/osnet-11/usr/src/lib/libc/port/stdio/ |
H A D | putchar.c | 47 putchar(ch) 48 int ch; 52 return (putc(ch, iop)); 62 putchar_unlocked(ch) 63 int ch; 67 return (PUTC(ch, iop));
|
H A D | putc.c | 48 putc(int ch, FILE *iop) argument 58 ret = __flsbuf((unsigned char) ch, iop); 60 (*iop->_ptr++) = (unsigned char)ch; 61 ret = (unsigned char)ch; 69 putc_unlocked(int ch, FILE *iop) argument 72 return (__flsbuf((unsigned char) ch, iop)); 74 return (*iop->_ptr++ = (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 | insch.c | 49 insch(ch) 50 chtype ch; 55 __m_trace("insch(%p)", ch); 58 code = winsch(stdscr, ch); 66 mvinsch(y, x, ch) 68 chtype ch; 73 __m_trace("mvinsch(%d, %d, %p)", y, x, ch); 77 code = winsch(stdscr, ch); 85 mvwinsch(w, y, x, ch) 88 chtype ch; [all...] |
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...] |
H A D | waddch.c | 47 waddch(w, ch) 49 chtype ch; 55 __m_trace("waddch(%p, %lx)", w, ch); 58 (void) __m_chtype_cc(ch, &cc);
|
H A D | winsch.c | 47 winsch(w, ch) 49 chtype ch; 55 __m_trace("winsch(%p, %lx)", w, ch); 58 (void) __m_chtype_cc(ch, &cc);
|
H A D | keyname.c | 52 keyname(ch) 53 int ch; 59 __m_trace("keyname(%d)", ch); 64 if ((*p)[1] == ch) { 71 str = unctrl(ch);
|
H A D | addch.c | 47 (addch)(chtype ch) argument 52 __m_trace("addch(%lx)", ch); 55 code = waddch(stdscr, ch); 61 (mvaddch)(int y, int x, chtype ch) argument 66 __m_trace("mvaddch(%d, %d, %lx)", y, x, ch); 70 code = waddch(stdscr, ch); 76 (mvwaddch)(WINDOW *w, int y, int x, chtype ch) argument 81 __m_trace("mvwaddch(%p, %d, %d, %lx)", w, y, x, ch); 85 code = waddch(w, ch);
|
H A D | echo_wch.c | 47 (echo_wchar)(const cchar_t *ch) argument 52 __m_trace("echo_wchar(%p)", ch); 55 if ((code = wadd_wch(stdscr, ch)) == OK) 62 (wecho_wchar)(WINDOW *w, const cchar_t *ch) argument 67 __m_trace("wecho_wchar(%p, %p)", w, ch); 70 if ((code = wadd_wch(w, ch)) == OK)
|
H A D | echochar.c | 47 (echochar)(chtype ch) argument 52 __m_trace("echochar(%lx)", ch); 55 if ((code = waddch(stdscr, ch)) == OK) 62 (wechochar)(WINDOW *w, chtype ch) argument 67 __m_trace("wechochar(%p, %lx)", w, ch); 70 if ((code = waddch(w, ch)) == OK)
|
H A D | vidattr.c | 47 vidattr(chtype ch) argument 53 __m_trace("vidattr(%lx)", ch); 56 (void) __m_chtype_cc(ch, &cc); 63 vidputs(chtype ch, int (*putout)(int)) argument 69 __m_trace("vidputs(%lx, %p)", ch, putout); 72 (void) __m_chtype_cc(ch, &cc);
|
/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 | inch.c | 54 chtype ch; local 56 ch = winch(stdscr); 58 return (ch); 66 chtype ch; local 68 if ((ch = (chtype) wmove(stdscr, y, x)) != (chtype) ERR) 69 ch = winch(stdscr); 71 return (ch); 79 chtype ch; local 81 if ((ch = (chtype) wmove(w, y, x)) != (chtype) ERR) 82 ch [all...] |
/osnet-11/usr/src/lib/libcryptoutil/common/ |
H A D | tohexstr.c | 70 unsigned char ch; local 93 ch = (unsigned char) *hexstr; 95 if (!isxdigit(ch)) { 102 if ((ch >= '0') && (ch <= '9')) 103 ch -= '0'; 104 else if ((ch >= 'A') && (ch <= 'F')) 105 ch = ch [all...] |
/osnet-11/usr/src/lib/libwrap/ |
H A D | percent_x.c | 55 int ch; local 63 if (*str == '%' && (ch = str[1]) != 0) { 66 ch == 'a' ? eval_hostaddr(request->client) : 67 ch == 'A' ? eval_hostaddr(request->server) : 68 ch == 'c' ? eval_client(request) : 69 ch == 'd' ? eval_daemon(request) : 70 ch == 'h' ? eval_hostinfo(request->client) : 71 ch == 'H' ? eval_hostinfo(request->server) : 72 ch == 'n' ? eval_hostname(request->client) : 73 ch [all...] |