Symbol: scroll
stand/efi/libefi/efi_console.c
275
teken_pos_t *d, bool scroll)
stand/efi/libefi/efi_console.c
293
if (!scroll)
stand/efi/libefi/efi_console.c
295
} else if (scroll) {
stand/efi/libefi/efi_console.c
312
bool scroll = false;
stand/efi/libefi/efi_console.c
330
scroll = true;
stand/efi/libefi/efi_console.c
349
efi_text_copy_line(state, ncol, &s, &d, scroll);
usr.bin/mail/cmdtab.c
83
{ "z", scroll, M|STRLIST, 0, 0 },
usr.bin/mail/extern.h
209
int scroll(void *);
usr.sbin/moused/moused/moused.c
1081
if (r->scroll.enable_vert || r->scroll.enable_hor) {
usr.sbin/moused/moused/moused.c
1089
r_vscroll_detect(r, &r->scroll, &action0);
usr.sbin/moused/moused/moused.c
1112
if (r->scroll.enable_vert || r->scroll.enable_hor) {
usr.sbin/moused/moused/moused.c
1117
r_vscroll(&r->scroll, &action2);
usr.sbin/moused/moused/moused.c
1131
if (r->scroll.state == SCROLL_NOTSCROLLING)
usr.sbin/moused/moused/moused.c
1826
r_init_scroll(struct quirks *q, struct scroll *scroll)
usr.sbin/moused/moused/moused.c
1828
*scroll = (struct scroll) {
usr.sbin/moused/moused/moused.c
1833
scroll->enable_vert = opt_virtual_scroll;
usr.sbin/moused/moused/moused.c
1835
quirks_get_bool(q, MOUSED_VIRTUAL_SCROLL_ENABLE, &scroll->enable_vert);
usr.sbin/moused/moused/moused.c
1836
scroll->enable_hor = opt_hvirtual_scroll;
usr.sbin/moused/moused/moused.c
1838
quirks_get_bool(q, MOUSED_HOR_VIRTUAL_SCROLL_ENABLE, &scroll->enable_hor);
usr.sbin/moused/moused/moused.c
1840
scroll->speed = opt_scroll_speed;
usr.sbin/moused/moused/moused.c
1842
quirks_get_uint32(q, MOUSED_VIRTUAL_SCROLL_SPEED, &scroll->speed);
usr.sbin/moused/moused/moused.c
1844
scroll->threshold = opt_scroll_threshold;
usr.sbin/moused/moused/moused.c
1846
quirks_get_uint32(q, MOUSED_VIRTUAL_SCROLL_THRESHOLD, &scroll->threshold);
usr.sbin/moused/moused/moused.c
1996
r_init_scroll(q, &r->scroll);
usr.sbin/moused/moused/moused.c
2332
r_vscroll_detect(struct rodent *r, struct scroll *sc, mousestatus_t *act)
usr.sbin/moused/moused/moused.c
2381
r_vscroll(struct scroll *sc, mousestatus_t *act)
usr.sbin/moused/moused/moused.c
420
struct scroll scroll; /* virtual scroll state */
usr.sbin/moused/moused/moused.c
508
static void r_vscroll_detect(struct rodent *r, struct scroll *sc,
usr.sbin/moused/moused/moused.c
510
static void r_vscroll(struct scroll *sc, mousestatus_t *act);