Searched refs:ch (Results 1 - 25 of 609) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libcurses/screen/
H A D_unctrl.c48 unctrl(int ch) argument
50 return (_unctrl[(unsigned) ch]);
H A D_addch.c49 addch(chtype ch) argument
51 return (waddch(stdscr, ch));
H A D_addwch.c40 addwch(chtype ch) argument
42 return (waddwch(stdscr, ch));
H A D_echochar.c49 echochar(chtype ch) argument
51 return (wechochar(stdscr, ch));
H A D_echowchar.c40 echowchar(chtype ch) argument
42 return (wechowchar(stdscr, ch));
H A D_mvaddwch.c40 mvaddwch(int y, int x, chtype ch) argument
42 return (mvwaddwch(stdscr, y, x, ch));
H A Dunctrl.h53 #define unctrl(ch) (_unctrl[(unsigned)ch])
/illumos-gate/usr/src/common/util/
H A Dstrtolctype.h59 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
60 #define isalpha(ch) (isupper(ch) || islower(ch))
61 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9')
62 #define islower(ch) ((c
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dputchar.c42 * void putchar(int ch)
47 putchar(int ch) argument
53 pUSART->US_THR = (ch & 0xFF);
57 xputchar(int ch) argument
59 if (ch == '\n')
61 putchar(ch);
H A Dxmodem.c52 int ch; local
57 if ((ch = getc(TO)) == -1)
59 if (ch != blocknum)
61 if ((ch = getc(TO)) == -1)
63 if (ch != (~blocknum & 0xff))
67 if ((ch = getc(TO)) == -1)
69 chk = chk ^ ch << 8;
76 *dest++ = ch;
81 if (((ch = getc(TO)) == -1) || ((ch
103 int starting, ch; local
[all...]
/illumos-gate/usr/src/lib/cfgadm_plugins/ib/common/
H A Dcfga_conf.h63 #define isunary(ch) ((ch) == '~' || (ch) == '-')
64 #define iswhite(ch) ((ch) == ' ' || (ch) == '\t')
65 #define isnewline(ch) ((ch) == '\n' || (ch) == '\r' || (ch)
[all...]
/illumos-gate/usr/src/uts/common/sys/
H A Dkobj_lex.h47 #define isunary(ch) ((ch) == '~' || (ch) == '-')
49 #define iswhite(ch) ((ch) == ' ' || (ch) == '\t')
51 #define isnewline(ch) ((ch) == '\n' || (ch) == '\r' || (ch)
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dkillchar.c49 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 Dinsch.c49 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 Dinch.c49 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 Dwaddch.c47 waddch(w, ch)
49 chtype ch;
55 __m_trace("waddch(%p, %lx)", w, ch);
58 (void) __m_chtype_cc(ch, &cc);
H A Dwinsch.c47 winsch(w, ch)
49 chtype ch;
55 __m_trace("winsch(%p, %lx)", w, ch);
58 (void) __m_chtype_cc(ch, &cc);
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dkillchar.c54 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 Dwinch.c52 chtype ch; local
54 ch = __m_cc_chtype(&w->_line[w->_cury][w->_curx]);
56 return (ch);
H A Dinch.c54 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...]
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dputchar.c47 putchar(ch)
48 int ch;
52 return (putc(ch, iop));
62 putchar_unlocked(ch)
63 int ch;
67 return (PUTC(ch, iop));
/illumos-gate/usr/src/cmd/tic/
H A Dtic_scan.c91 #define iswhite(ch) (ch == ' ' || ch == '\t')
137 register int ch; local
142 while ((ch = next_char()) == '\n' || (isascii(ch) && iswhite(ch)));
144 if (ch == EOF)
147 if (ch == '.') {
150 while ((ch
401 register int ch; local
504 panic_mode(int ch) argument
[all...]
/illumos-gate/usr/src/cmd/make/include/mksh/
H A Di18n.h30 extern int get_char_semantics_entry(wchar_t ch);
31 extern char get_char_semantics_value(wchar_t ch);
/illumos-gate/usr/src/lib/libcryptoutil/common/
H A Dtohexstr.c70 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...]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/sysevent/
H A Dtst.post_chan.c32 evchan_t *ch; local
34 if (sysevent_evc_bind("channel_dtest", &ch,
41 if (sysevent_evc_publish(ch, "class_dtest", "subclass_dtest",
43 (void) sysevent_evc_unbind(ch);

Completed in 139 milliseconds

1234567891011>>