/illumos-gate/usr/src/lib/libcurses/ |
H A D | Makefile | 38 SCRFILES = screen/keycaps \ 39 screen/curses.h \ 40 screen/keyname.c \ 41 screen/termcap.c \ 42 screen/tifget.c \ 43 screen/tiget.c \ 44 screen/tifnames.c \ 45 screen/tnames.c \ 46 screen/tinames.c \ 47 screen/term.h [all …]
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | delscreen.c | 48 delscreen(SCREEN *screen) in delscreen() argument 52 fprintf(outf, "delscreen: screen %x\n", screen); in delscreen() 58 if (screen->tcap) in delscreen() 59 (void) delterm(screen->tcap); in delscreen() 60 if (screen->cur_scr) in delscreen() 61 (void) delwin(screen->cur_scr); in delscreen() 62 if (screen->std_scr) in delscreen() 63 (void) delwin(screen->std_scr); in delscreen() 64 if (screen->virt_scr) in delscreen() 65 (void) delwin(screen->virt_scr); in delscreen() [all …]
|
H A D | _set_term.c | 47 set_term(SCREEN *screen) in set_term() argument 49 return (setcurscreen(screen)); in set_term()
|
H A D | caps | 52 memory_above, "da" "da" Display may be retained above the screen 53 memory_below, "db" "db" Display may be retained below the screen 63 prtr_silent, "mc5i" "5i" Printer won't echo on screen. 69 back_color_erase, "bce" "ut" Erases screen with current background 87 lines, "lines" "li" Number of lines on screen or page 93 num_labels, "nlab" "Nl" # of labels on screen (start at 1) 101 max_colors, "colors" "Co" max # of color on the screen 102 max_pairs, "pairs" "pa" max # of color pairs on the screen 139 clear_screen, "clear" "cl" Clear screen (*) 191 key_clear, "kclr" "kC" KEY_CLEAR, 0515, Sent by clear screen or erase key. [all …]
|
/illumos-gate/usr/src/cmd/tic/ |
H A D | req.flg | 28 echo_file usr/src/lib/libcurses/screen/curses_inc.h 29 echo_file usr/src/lib/libcurses/screen/compiler.h 30 echo_file usr/src/lib/libcurses/screen/curshdr.h 31 echo_file usr/src/lib/libcurses/screen/curses_wchar.h 32 echo_file usr/src/lib/libcurses/screen/object.h
|
H A D | Makefile.common | 39 CPPFLAGS += -I$(SRC)/lib/libcurses/screen
|
/illumos-gate/usr/src/uts/i86pc/io/gfx_private/ |
H A D | gfxp_bitmap.c | 111 fbip->xres = softc->console->fb.screen.x; in gfxp_bm_getfb_info() 112 fbip->yres = softc->console->fb.screen.y; in gfxp_bm_getfb_info() 244 bitmap_attr.fbtype.fb_height = fb_info.screen.y; in bitmap_setup_fb() 245 bitmap_attr.fbtype.fb_width = fb_info.screen.x; in bitmap_setup_fb() 284 data->width = console->fb.screen.x; in bitmap_devinit() 285 data->height = console->fb.screen.y; in bitmap_devinit() 305 height = softc->console->fb.screen.y; in bitmap_copy_fb() 413 if (da->col >= console->fb.screen.x || in bitmap_cons_display() 414 da->row >= console->fb.screen.y || in bitmap_cons_display() 415 da->col + da->width > console->fb.screen.x || in bitmap_cons_display() [all …]
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | newterm.c | 425 set_term(screen) in set_term() argument 426 SCREEN *screen; in set_term() 431 __m_trace("set_term(%p)", screen); 433 if (screen != (SCREEN *) 0) { 434 (void) set_curterm(screen->_term); 435 curscr = screen->_curscr; 436 __m_screen = screen;
|
H A D | caps | 78 memory_above da da bool Display may be retained above the screen 79 memory_below db db bool Display may be retained below the screen 89 prtr_silent mc5i 5i bool Printer won't echo on screen 108 lines lines li number # of lines on screen or page 114 num_labels nlab Nl number # of labels on screen (start at 1) 119 max_colors colors Co number Max # of colors on the screen 120 max_pairs pairs pa number Max # of color-pairs on the screen 146 clear_screen clear cl str Clear screen (P*) 198 key_clear kclr kC str Sent by clear screen or erase key. 205 key_eos ked kS str Sent by clear-to-end-of-screen key. [all …]
|
/illumos-gate/usr/src/boot/forth/ |
H A D | screen.4th | 27 marker task-screen.4th 38 \ clear screen 75 \ Get the number of screen rows/columns 76 : sr ( -- y ) 25 s" screen-#rows" getenvn ; 77 : sc ( -- x ) 80 s" screen-#cols" getenvn ; 79 \ Place the cursor at the bottom left of the screen
|
H A D | shortcuts.4th | 44 clear \ Clear the screen (in screen.4th)
|
H A D | Makefile | 48 FORTH += screen.4th
|
H A D | logo-orbbw.4th | 31 type \ print to the screen
|
/illumos-gate/usr/src/uts/i86pc/boot/ |
H A D | boot_fb.c | 171 fb_info.screen.x = tag->framebuffer_common.framebuffer_width; in xbi_fb_init() 172 fb_info.screen.y = tag->framebuffer_common.framebuffer_height; in xbi_fb_init() 173 fb_info.fb_size = fb_info.screen.y * fb_info.pitch; in xbi_fb_init() 425 boot_fb_set_font(fb_info.screen.y, fb_info.screen.x); in boot_fb_init() 426 window.x = (fb_info.screen.x - in boot_fb_init() 428 window.y = (fb_info.screen.y - in boot_fb_init() 459 fb_info.cursor.origin.x > fb_info.screen.x || in boot_fb_init() 460 fb_info.cursor.origin.y > fb_info.screen.y) { in boot_fb_init() 478 for (y = 0; y < fb_info.screen.y; y++) { in boot_fb_init() 497 if (rect->col >= fb_info.screen.x || in boot_fb_blit() [all …]
|
/illumos-gate/usr/src/cmd/more/ |
H A D | more.help | 5 <space> Display next k lines of text [current screen size] 6 z Display next k lines of text [current screen size]* 20 ctrl-L Redraw screen
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | newterm.c | 435 set_term(SCREEN *screen) in set_term() argument 439 if (screen != NULL) { in set_term() 440 (void) set_curterm(screen->_term); in set_term() 441 curscr = screen->_curscr; in set_term() 442 __m_screen = screen; in set_term()
|
H A D | caps | 76 memory_above da da bool Display may be retained above the screen 77 memory_below db db bool Display may be retained below the screen 87 prtr_silent mc5i 5i bool Printer won't echo on screen 106 lines lines li number # of lines on screen or page 112 num_labels nlab Nl number # of labels on screen (start at 1) 117 max_colors colors Co number Max # of colors on the screen 118 max_pairs pairs pa number Max # of color-pairs on the screen 144 clear_screen clear cl str Clear screen (P*) 196 key_clear kclr kC str Sent by clear screen or erase key. 203 key_eos ked kS str Sent by clear-to-end-of-screen key. [all …]
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/edit/ |
H A D | emacs.c | 106 genchar *screen; /* pointer to window buffer */ member 202 ep->screen = Screen; in ed_emacsread() 1375 ep->cursor = ep->screen; in draw() 1429 ed_setcursor(ep->ed,ep->screen,0,ep->cursor-ep->screen, 0); in draw() 1438 print(i)&&((ep->cursor-ep->screen)<(w_size-1))) in draw() 1476 sptr = ep->screen; in draw() 1499 setcursor(ep,sptr-ep->screen,*nptr); in draw() 1513 ed_setcursor(ep->ed, ep->screen, ep->cursor-ep->screen, ep->ed->e_peol, -1); in draw() 1558 register int oldp = ep->cursor - ep->screen; in setcursor() 1559 newp = ed_setcursor(ep->ed, ep->screen, oldp, newp, 0); in setcursor() [all …]
|
/illumos-gate/usr/src/grub/grub-0.97/docs/ |
H A D | kernel.c.texi | 25 /* @r{Some screen stuff.} */ 57 /* @r{Clear the screen.} */ 155 /* @r{Clear the screen and initialize VIDEO, XPOS and YPOS.} */ 216 /* @r{Put the character C on the screen.} */ 238 /* @r{Format a string and print it on the screen, just like the libc
|
/illumos-gate/usr/src/cmd/vi/port/ |
H A D | ex.news | 205 temp file and encrypted text on your screen has been fixed. 284 A bug which prevented using a screen larger than 48 lines has 288 your screen size has been fixed. 290 The screen size limit on non-VM/Unix systems has been increased 332 messing up the screen. 486 undone (which will probably not redraw the screen). If no changes 497 possible on USG systems to interrupt redrawing the screen and to 508 distance from the right edge of the screen, but this location 522 A bug which caused the screen to be wrong after undoing a 525 A bug which messed up the buffer and the screen after [all …]
|
/illumos-gate/usr/src/cmd/infocmp/ |
H A D | Makefile | 35 CPPFLAGS += -I../../lib/libcurses/screen
|
/illumos-gate/usr/src/data/locale/tools/ |
H A D | widths-2.txt | 3 # within these ranges (inclusive) have screen width 2.
|
/illumos-gate/usr/src/cmd/captoinfo/ |
H A D | Makefile | 37 CPPFLAGS += -I../../lib/libcurses/screen
|
/illumos-gate/usr/src/uts/i86pc/sys/ |
H A D | framebuffer.h | 74 fb_info_pixel_coord_t screen; /* screen size */ member
|
/illumos-gate/usr/src/data/terminfo/ |
H A D | termcap.src | 51 # as needed by software such as screen-oriented editors. 455 # assume auto margins, no padding and/or xon/xoff, and a 24x80 screen. 461 # beware of screen size problems and memory relative cursor addressing. 818 # All linux kernels since 1.2.13 (at least) set the screen size 870 # Using SI/SO has the drawback that it confuses screen. SCS would work. 1876 # the screen annoyingly. You can type "reset" to get them set. 2062 # Clearing the screen will clobber status line. 2080 # string in the canonical vt100 entry above leaves the screen littered 2089 # VT125 Graphics CRT. Clear screen also erases graphics 2768 # X10/6.6 11/7/86, minus alternate screen, plus (csr) [all …]
|