/src/etc/ |
wscons.conf | 9 # Note: "pcvt" encoded fonts are only useful with the "*bf" screen types 29 # idx screen emul 30 # Screen 0 is already configured as console in most cases. 32 #screen 0 - vt100 33 screen 1 - vt100 34 screen 2 - vt100 35 screen 3 - vt100 36 screen 4 - - 37 #screen 4 80x25bf vt100 40 #screen 5 80x50 vt10 [all...] |
/src/lib/libcurses/ |
setterm.c | 62 _cursesi_setterm(const char *type, SCREEN *screen) 70 if (screen->term) 71 del_curterm(screen->term); 72 (void)ti_setupterm(&screen->term, type, fileno(screen->outfd), &r); 73 if (screen->term == NULL) { 75 (void)ti_setupterm(&screen->term, "dumb", 76 fileno(screen->outfd), &r); 78 if (screen->term == NULL [all...] |
slk.c | 65 static int __slk_attroff(SCREEN *, const chtype); 66 static int __slk_attron(SCREEN *, const chtype); 67 static int __slk_attrset(SCREEN *, const chtype); 69 static int __slk_attr_off(SCREEN *, const attr_t, void *); 70 static int __slk_attr_on(SCREEN *, const attr_t, void *); 71 static int __slk_attr_set(SCREEN *, const attr_t, short, void *opt); 72 static int __slk_color(SCREEN *, short); 75 static int __slk_clear(SCREEN *); 76 static char *__slk_label(SCREEN *, int); 77 static int __slk_restore(SCREEN *); [all...] |
tty.c | 107 * given screen. 110 _cursesi_gettmode(SCREEN *screen) 112 screen->useraw = 0; 114 if (tcgetattr(fileno(screen->infd), &screen->orig_termios)) { 116 if (tcgetattr(fileno(screen->outfd), &screen->orig_termios)) { 118 screen->notty = TRUE; 125 screen->baset = screen->orig_termios [all...] |
ripoffline.c | 69 * Returns the number of ripped lines from the screen. 72 __rippedlines(const SCREEN *screen, int line) 78 for (i = 0, rip = screen->ripped; i < screen->nripped; i++, rip++) { 89 * Rips lines from the screen by creating a WINDOW per ripoffline call. 94 __ripoffscreen(SCREEN *screen) 101 rip = screen->ripped; 108 w = __newwin(screen, nlines, 0 [all...] |
acs.c | 56 __init_acs(SCREEN *screen) 101 if (t_acs_chars(screen->term) == NULL) 104 aofac = t_acs_chars(screen->term); 118 if (t_ena_acs(screen->term) != NULL) 119 ti_puts(screen->term, t_ena_acs(screen->term), 0, 120 __cputchar_args, screen->outfd); 124 screen->acs_char[count]= _acs_char[count]; 128 _cursesi_reset_acs(SCREEN *screen [all...] |
delwin.c | 55 SCREEN *screen; local in function:delwin 81 /* Remove ourselves from the list of windows on the screen. */ 83 screen = win->screen; 84 for (wl = screen->winlistp; wl; pwl = wl, wl = wl->nextp) { 90 screen->winlistp = wl->nextp;
|
screen.c | 1 /* $NetBSD: screen.c,v 1.40 2024/07/11 07:13:41 blymn Exp $ */ 35 static char sccsid[] = "@(#)screen.c 8.2 (blymn) 11/27/2001"; 37 __RCSID("$NetBSD: screen.c,v 1.40 2024/07/11 07:13:41 blymn Exp $"); 48 static void __delscreen(SCREEN *); 62 * Change the term to the given screen. 65 SCREEN * 66 set_term(SCREEN *new) 68 SCREEN *old_screen = _cursesi_screen; 71 /* save changes made to the current screen... */ 123 * Set up a new screen [all...] |
standout.c | 80 const TERMINAL *t = win->screen->term; 84 * screen standout bit.
|
newwin.c | 47 static WINDOW *__makenew(SCREEN *screen, int nlines, int ncols, int by, 124 __newwin(SCREEN *screen, int nlines, int ncols, int by, int bx, int ispad, 137 ry = __rippedlines(screen, -1); 138 by += __rippedlines(screen, 1); 145 if ((win = __makenew(screen, maxy, maxx, by, bx, 0, ispad)) == NULL) 260 __makenew(SCREEN *screen, int nlines, int ncols, int by, int bx, int sub, 317 if (screen->winlistp == NULL [all...] |
/src/games/warp/ |
sm.c | 17 char screen[23][90], buf[10]; local in function:main 23 screen[0][x] = ' '; 24 screen[0][79] = '\0'; 26 fgets(screen[0],90,stdin); 27 if (isdigit(screen[0][0])) { 28 int numstars = atoi(screen[0]); 32 screen[y][x] = ' '; 33 screen[y][79] = '\0'; 40 screen[y][x+x] = '*'; 44 printf("%s\n",screen[y]) [all...] |
/src/games/atc/ |
extern.c | 71 static C_SCREEN screen; variable in typeref:typename:C_SCREEN 72 C_SCREEN *sp = &screen;
|
/src/sys/arch/bebox/stand/boot/ |
video.c | 52 struct screen { struct 66 } screen; variable in typeref:struct:screen 72 struct screen *d = &screen; 85 wrtchar(u_char c, struct screen *d) 104 cursor(struct screen *d, int flag) 126 * or 0 if the current regular color for that screen is to be used. 131 struct screen *d = &screen;
|
vga.c | 57 struct screen { struct 74 } screen; variable in typeref:struct:screen 100 int pos = screen.cp - Crtat; 114 struct screen *d = &screen; 147 * or 0 if the current regular color for that screen is to be used. 152 struct screen *d = &screen; 368 case 'c': /* Clear screen & home */ 424 struct screen *d = &screen [all...] |
/src/games/tetris/ |
Makefile | 5 SRCS= input.c screen.c shapes.c scores.c tetris.c
|
/src/sys/external/bsd/drm2/dist/drm/vboxvideo/ |
vbva_base.c | 113 struct gen_pool *ctx, s32 screen, bool enable) 125 if (screen >= 0) { 127 p->screen_id = screen; 143 struct vbva_buffer *vbva, s32 screen) 152 ret = vbva_inform_host(vbva_ctx, ctx, screen, true); 154 vbva_disable(vbva_ctx, ctx, screen); 160 s32 screen) 166 vbva_inform_host(vbva_ctx, ctx, screen, false);
|
vboxvideo_guest.h | 14 * information to the host via VBVA. Each screen has its own VBVA buffer. 17 /* Offset of the buffer in the VRAM section for the screen */ 43 struct vbva_buffer *vbva, s32 screen); 45 s32 screen);
|
/src/sys/arch/prep/stand/boot/ |
vga.c | 59 struct screen { struct 76 } screen; variable in typeref:struct:screen 102 int pos = screen.cp - Crtat; 116 struct screen *d = &screen; 149 * or 0 if the current regular color for that screen is to be used. 154 struct screen *d = &screen; 370 case 'c': /* Clear screen & home */ 426 struct screen *d = &screen [all...] |
/src/distrib/utils/more/ |
Makefile | 10 option.c os.c output.c position.c prim.c screen.c signal.c \
|
/src/sys/arch/pmax/pmax/ |
dec_3100.c | 161 int kbd, crt, screen; local in function:dec_3100_cons_init 163 kbd = crt = screen = 0; 164 prom_findcons(&kbd, &crt, &screen); 166 if (screen > 0) {
|
/src/games/larn/ |
display.c | 239 * subroutine to draw only a section of the screen 240 * only the top section of the screen is updated. 243 /* for limited screen drawing */ 250 if (xmin == 0 && xmax == MAXX) { /* clear section of screen as 262 d_ymax = ymax; /* for limited screen drawing */ 265 * of screen as needed */ 280 subroutine to redraw the whole screen as the player knows it 282 u_char screen[MAXX][MAXY]; /* template for the screen */ variable in typeref:typename:u_char[][] 292 clear(); /* clear the screen */ [all...] |
/src/usr.bin/mail/ |
cmd1.c | 59 static int screen; variable in typeref:typename:int 62 * Compute screen size. 112 screen = (n - 1)/size; 113 if (screen < 0) 114 screen = 0; 116 if ((mp = get_message(screen * size + 1)) == NULL) { 119 if (screen * size + 1 > msgCount) 142 * Scroll to the next/previous screen 155 s = screen; 164 screen = s [all...] |
/src/sys/arch/evbarm/netwalker/ |
netwalker_lcd.c | 161 struct imx51_ipuv3_screen *screen; local in function:lcd_attach 164 error = imx51_ipuv3_new_screen(sc, &screen); 166 draw_test_pattern(sc, screen); 169 sc->active = screen; 170 imx51_ipuv3_start_dma(sc, screen);
|
/src/sys/arch/evbarm/smdk2xx0/ |
smdk2410_lcd.c | 76 * Screen geometries. 105 }, lcd_bpp8_40x25 = { /* with big virtual screen */ 232 struct s3c24x0_lcd_screen *screen; local in function:lcd_attach 260 screen = s3c24x0_lcd_new_screen(sc, 240, 320, 16); 262 if( screen ){ 263 sc->active = screen; 264 s3c24x0_lcd_start_dma(sc, screen);
|
/src/games/battlestar/ |
fly.c | 60 static void screen(void); 88 screen(); 186 screen(void) function in typeref:typename:void
|