Symbol: wgetch
usr/src/cmd/ipf/tools/ipfstat.c
1562
c = wgetch(stdscr);
usr/src/lib/libcurses/screen/_getch.c
49
return (wgetch(stdscr));
usr/src/lib/libcurses/screen/_mvgetch.c
49
return (wmove(stdscr, y, x) == ERR ? ERR : wgetch(stdscr));
usr/src/lib/libcurses/screen/_mvwgetch.c
49
return (wmove(win, y, x) == ERR ? ERR : wgetch(win));
usr/src/lib/libcurses/screen/wgetstr.c
101
ch = wgetch(win);
usr/src/lib/libcurses/screen/wgetwch.c
48
if ((c = wgetch(win)) == ERR)
usr/src/lib/libcurses/screen/wgetwch.c
59
if ((c = wgetch(win)) == ERR)
usr/src/lib/libxcurses/h/curses.h
603
extern int wgetch(WINDOW *);
usr/src/lib/libxcurses/h/curses.h
933
#define getch() wgetch(stdscr)
usr/src/lib/libxcurses/h/curses.h
935
#define mvwgetch(w,y,x) (wmove(w,y,x)?ERR:wgetch(w))
usr/src/lib/libxcurses/src/libc/xcurses/getch.c
55
value = wgetch(stdscr);
usr/src/lib/libxcurses/src/libc/xcurses/getch.c
75
value = wgetch(stdscr);
usr/src/lib/libxcurses/src/libc/xcurses/getch.c
96
value = wgetch(w);
usr/src/lib/libxcurses/src/libc/xcurses/newterm.c
279
wio->get = (int (*)(void *)) wgetch;
usr/src/lib/libxcurses/src/libc/xcurses/wget_wch.c
104
if ((ch = wgetch(w)) < __KEY_BASE) {
usr/src/lib/libxcurses2/h/curses.h
679
extern int wgetch(WINDOW *);
usr/src/lib/libxcurses2/h/curses.h
881
#define getch() wgetch(stdscr)
usr/src/lib/libxcurses2/h/curses.h
884
(wmove(__w1 = (w), y, x) ? ERR : wgetch(__w1))
usr/src/lib/libxcurses2/src/libc/xcurses/getch.c
54
value = wgetch(stdscr);
usr/src/lib/libxcurses2/src/libc/xcurses/getch.c
69
value = wgetch(stdscr);
usr/src/lib/libxcurses2/src/libc/xcurses/getch.c
84
value = wgetch(w);
usr/src/lib/libxcurses2/src/libc/xcurses/newterm.c
275
wio->get = (int (*)(void *)) wgetch;
usr/src/lib/libxcurses2/src/libc/xcurses/wget_wch.c
103
if ((ch = wgetch(w)) == ERR) {
usr/src/ucbhead/curses.h
107
#define getch() VOID(wgetch(stdscr))
usr/src/ucbhead/curses.h
129
#define mvwgetch(win, y, x) VOID(wmove(win, y, x) == ERR?ERR:wgetch(win))
usr/src/ucbhead/curses.h
223
extern int wgetch(WINDOW *);
usr/src/ucblib/libcurses/getstr.c
32
while ((*str = wgetch(win)) != ERR && *str != '\n')