| /src/sbin/wsconsctl/ |
| keyboard.c | 57 static struct wskbd_scroll_data scroll; variable in typeref:struct:wskbd_scroll_data 81 { "scroll.mode", &scroll.mode, FMT_UINT, FLG_MODIFY }, 82 { "scroll.modifier", &scroll.modifier, FMT_UINT, FLG_MODIFY }, 183 scroll.which = 0; 184 if (field_by_value(&scroll.mode)->flags & FLG_GET) 185 scroll.which |= WSKBD_SCROLL_DOMODE; 186 if (field_by_value(&scroll.modifier)->flags & FLG_GET) 187 scroll.which |= WSKBD_SCROLL_DOMODIFIER [all...] |
| /src/games/hack/ |
| hack.read.c | 79 struct obj *scroll; local 83 scroll = getobj("?", "read"); 84 if (!scroll) 86 if (!scroll->dknown && Blind) { 87 pline("Being blind, you cannot read the formula on the scroll."); 91 pline("As you pronounce the formula on it, the scroll disappears."); 93 pline("As you read the scroll, it disappears."); 97 switch (scroll->otyp) { 100 readmail( /* scroll */ ); 107 strange_feeling(scroll, "Your skin glows then fades.") [all...] |
| /src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/ |
| eventhistory.cpp | 113 bool scroll = true; local 117 scroll = false; 122 if (scroll)
|
| /src/lib/libcurses/ |
| scroll.c | 1 /* $NetBSD: scroll.c,v 1.29 2024/12/23 02:58:04 blymn Exp $ */ 35 static char sccsid[] = "@(#)scroll.c 8.3 (Berkeley) 5/4/94"; 37 __RCSID("$NetBSD: scroll.c,v 1.29 2024/12/23 02:58:04 blymn Exp $"); 45 * scroll -- 46 * Scroll the window up a line. 49 scroll(WINDOW *win) function 59 * Scroll stdscr n lines - up if n is positive, down if n is negative. 94 * Scroll a window n lines - up if n is positive, down if n is negative. 121 __CTRACE(__CTRACE_WINDOW, "scroll: win == curscr\n");
|
| insch.c | 136 scroll(win);
|
| addbytes.c | 225 not allowed to scroll then just do 269 scroll(win); 383 scroll(win); 399 not allowed to scroll then just do 453 scroll(win); 496 scroll(win); 601 "_cursesi_addwchar: do a scroll\n"); 604 scroll(win);
|
| Makefile | 30 scroll.c scrollok.c setterm.c slk.c standout.c syncok.c timeout.c \ 159 curses_scroll.3 scrl.3 curses_scroll.3 scroll.3 \
|
| ins_wch.c | 124 scroll(win);
|
| /src/sys/arch/ews4800mips/stand/common/ |
| console.c | 58 cons.scroll = nullscroll; 123 cons.scroll = cons_rom_scroll; 183 cons.scroll(); 214 cons.scroll();
|
| console.h | 73 void (*scroll)(void); member in struct:cons
|
| cons_fb.c | 54 cons.scroll = fb_scroll; 94 #if 0 /* 1-line scroll */ 100 #else /* jump scroll */
|
| /src/external/bsd/nvi/dist/motif_l/ |
| m_func.c | 228 /* probably ok to scroll again */ 329 XtVaGetValues( __vi_screen->scroll, XmNmaximum, &old_max, 0 ); 331 XtVaSetValues( __vi_screen->scroll, XmNmaximum, maximum, 0 ); 334 XmScrollBarSetValues( __vi_screen->scroll, 344 XtVaSetValues( __vi_screen->scroll, XmNmaximum, maximum, 0 );
|
| m_motif.h | 57 scroll; /* not connected yet */ member in struct:__anon7601
|
| /src/external/bsd/wpa/dist/src/utils/ |
| browser.c | 294 GtkWidget *scroll; local 320 scroll = gtk_scrolled_window_new(NULL, NULL); 321 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll), 358 gtk_container_add(GTK_CONTAINER(scroll), GTK_WIDGET(view)); 359 gtk_container_add(GTK_CONTAINER(ctx.win), GTK_WIDGET(scroll));
|
| /src/usr.bin/menuc/ |
| scan.l | 119 scroll { return SCROLL; }
|
| /src/sys/arch/atari/vme/ |
| leo.c | 330 leo_scroll(struct leo_softc *sc, int scroll) 333 if ((scroll < 0) || (scroll > 255)) 336 (scroll >> 6) & 0xff); 338 (scroll << 2) & 0xff);
|
| /src/sys/dev/wscons/ |
| wsdisplayvar.h | 133 void (*scroll)(void *, void *, int); member in struct:wsdisplay_accessops
|
| /src/sys/dev/qbus/ |
| qd.c | 134 #define MAPSCR 0x08 /* scroll param area mapped */ 196 * The driver assists a client in scroll operations by loading dragon 199 * The scroll parameter structures are ALL located in the same memory page 202 char scroll_shared[2 * 512]; /* reserve space for scroll structs */ 203 struct scroll *scroll[NQD]; /* pointers to scroll structures */ variable in typeref:struct:scroll 979 * re-protect scroll param area and disable scroll intrpts 982 ptep = (int *) ((VTOP(scroll[unit]) * 4 [all...] |
| qduser.h | 368 * SCROLL ASSIST DEFINITIONS 372 struct scroll { struct
|
| /src/sys/dev/hpc/ |
| bicons.c | 131 static void scroll(int, int, int); 248 /* scroll up */ 249 scroll(FONT_HEIGHT, (bicons_height - 1) * FONT_HEIGHT, 326 scroll(int y, int height, int d) function
|
| /src/sys/arch/arc/dev/ |
| pccons.c | 973 u_char c, scroll = 0; local 1050 scroll = 1; 1069 scroll = 1; 1086 * break to do a scroll check. 1098 scroll = 1; 1303 case 'S': { /* scroll up cx lines */ 1353 case 'T': { /* scroll down cx lines */ 1439 if (scroll) { 1440 scroll = 0; 1441 /* scroll check * [all...] |
| /src/sys/arch/vax/include/ |
| qduser.h | 375 * SCROLL ASSIST DEFINITIONS 379 struct scroll { struct
|
| /src/sys/arch/x68k/stand/libiocs/ |
| Makefile | 15 tpalet2.S tcolor.S fntget.S textget.S textput.S clipput.S scroll.S \
|
| /src/tests/lib/libcurses/tests/ |
| Makefile | 163 FILES+= scroll
|
| /src/usr.bin/mail/ |
| extern.h | 52 int scroll(void *);
|