Home
last modified time | relevance | path

Searched refs:__KEY_BASE (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dcurses.h1101 #define __KEY_BASE (-2) macro
1102 #define __KEY_MAX __KEY_BASE
1104 #define KEY_CODE_YES (__KEY_BASE-1) /* Special indicator. */
1105 #define KEY_BREAK (__KEY_BASE-2) /* Break key (unreliable) */
1106 #define KEY_DOWN (__KEY_BASE-3) /* The four arrow keys ... */
1107 #define KEY_UP (__KEY_BASE-4)
1108 #define KEY_LEFT (__KEY_BASE-5)
1109 #define KEY_RIGHT (__KEY_BASE-6)
1110 #define KEY_HOME (__KEY_BASE-7) /* Move to upper-left corner. */
1111 #define KEY_BACKSPACE (__KEY_BASE-8) /* Backspace */
[all …]
/illumos-gate/usr/src/lib/libxcurses/h/
H A Dcurses.h1107 #define __KEY_BASE (-2) macro
1108 #define __KEY_MAX __KEY_BASE
1110 #define KEY_CODE_YES (__KEY_BASE-1) /* Special indicator. */
1112 #define KEY_BREAK (__KEY_BASE-2) /* Break key (unreliable) */
1113 #define KEY_DOWN (__KEY_BASE-3) /* The four arrow keys ... */
1114 #define KEY_UP (__KEY_BASE-4)
1115 #define KEY_LEFT (__KEY_BASE-5)
1116 #define KEY_RIGHT (__KEY_BASE-6)
1117 #define KEY_HOME (__KEY_BASE-7) /* Move to upper-left corner. */
1118 #define KEY_BACKSPACE (__KEY_BASE-8) /* Backspace */
[all …]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwget_wch.c104 if ((ch = wgetch(w)) < __KEY_BASE) {
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwget_wch.c107 if (ch < __KEY_BASE) { in wget_wch()