/src/lib/libcurses/ |
bell.c | 49 tputs(bell, 0, __cputchar); 52 tputs(flash_screen, 0, __cputchar); 66 tputs(flash_screen, 0, __cputchar); 69 tputs(bell, 0, __cputchar);
|
curs_set.c | 59 tputs(cursor_invisible, 0, __cputchar); 69 tputs(cursor_normal, 0, __cputchar); 79 tputs(cursor_visible, 0, __cputchar);
|
meta.c | 53 tputs(meta_on, 0, __cputchar); 60 tputs(meta_off, 0, __cputchar);
|
pause.c | 75 tputs(delstr, 0, __cputchar);
|
keypad.c | 53 tputs(keypad_xmit, 0, __cputchar);
|
cr_put.c | 112 0, __cputchar); 114 __cputchar('\r'); 117 tputs(cursor_down, 0, __cputchar); 119 __cputchar('\n'); 157 tputs(cursor_down, 0, __cputchar); 159 __cputchar('\n'); 180 tputs(cgp, 0, __cputchar); 216 __cputchar(c); 455 __cputchar(i);
|
putchar.c | 45 __cputchar(int ch) function in typeref:typename:int 48 __CTRACE(__CTRACE_OUTPUT, "__cputchar: %s\n", unctrl(ch)); 53 * This is the same as __cputchar but the extra argument holds the file 79 * This is the same as __cputchar but the extra argument holds the file
|
refresh.c | 583 tputs(clear_screen, 0, __cputchar); 599 __cputchar('\n'); 854 tputs(exit_attribute_mode, 0, __cputchar); 865 tputs(exit_underline_mode, 0, __cputchar); 878 tputs(exit_standout_mode, 0, __cputchar); 884 tputs(exit_alt_charset_mode, 0, __cputchar); 907 tputs(enter_standout_mode, 0, __cputchar); 920 tputs(enter_underline_mode, 0, __cputchar); 930 tputs(enter_blink_mode, 0, __cputchar); 935 tputs(enter_bold_mode, 0, __cputchar); [all...] |
tstp.c | 235 (void)tputs(meta_on, 0, __cputchar); 238 (void)tputs(keypad_local, 0, __cputchar); 239 (void)tputs(cursor_normal, 0, __cputchar); 240 (void)tputs(exit_ca_mode, 0, __cputchar);
|
scroll.c | 118 __cputchar('\n');
|
color.c | 130 tputs(orig_colors, 0, __cputchar); 132 tputs(orig_pair, 0, __cputchar); 419 color, red, green, blue), 0, __cputchar); 560 0, __cputchar); 564 0, __cputchar); 579 0, __cputchar); 583 0, __cputchar); 604 tputs(orig_pair, 0, __cputchar); 616 tputs(orig_pair, 0, __cputchar);
|
curses.h | 89 #define _puts(s) tputs(s, 0, __cputchar) 90 #define _putchar(c) __cputchar(c) 1057 int __cputchar(int);
|