/linux-2.6.39/scripts/kconfig/lxdialog/ |
D | menubox.c | 111 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument 120 if (scroll > 0) { in print_arrows() 136 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows() 169 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument 175 *scroll = *scroll + n; in do_scroll() 187 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local 250 scroll = *s_scroll; in dialog_menu() 251 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu() 252 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu() 253 first_item = scroll; in dialog_menu() [all …]
|
D | checklist.c | 65 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument 70 if (scroll > 0) { in print_arrows() 85 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows() 121 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local 189 scroll = choice - list_height + 1; in dialog_checklist() 190 choice -= scroll; in dialog_checklist() 195 item_set(scroll + i); in dialog_checklist() 199 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist() 212 item_set(i + scroll); in dialog_checklist() 221 if (!scroll) in dialog_checklist() [all …]
|
D | inputbox.c | 48 int input_x = 0, scroll = 0, key = 0, button = -1; in dialog_inputbox() local 103 scroll = input_x - box_width + 1; in dialog_inputbox() 106 waddch(dialog, instr[scroll + i]); in dialog_inputbox() 130 if (input_x || scroll) { in dialog_inputbox() 133 scroll = scroll < box_width - 1 ? 0 : scroll - (box_width - 1); in dialog_inputbox() 137 instr[scroll + input_x + i] ? in dialog_inputbox() 138 instr[scroll + input_x + i] : ' '); in dialog_inputbox() 139 input_x = strlen(instr) - scroll; in dialog_inputbox() 142 instr[scroll + input_x] = '\0'; in dialog_inputbox() 150 if (scroll + input_x < MAX_LEN) { in dialog_inputbox() [all …]
|
D | textbox.c | 206 scroll(box); /* Scroll box region up one line */ in dialog_textbox()
|
/linux-2.6.39/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | SchedGui.py | 42 self.scroll = wx.ScrolledWindow(self.panel) 43 …self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_s… 44 self.scroll.EnableScrolling(True, True) 45 self.scroll.SetFocus() 48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2)) 52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint) 53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press) 54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down) 56 self.scroll.Fit() 72 (x, y) = self.scroll.GetViewStart() [all …]
|
/linux-2.6.39/drivers/input/keyboard/ |
D | atkbd.c | 59 module_param_named(scroll, atkbd_scroll, bool, 0); 60 MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards"); 219 bool scroll; member 268 ATKBD_DEFINE_ATTR(scroll); 372 int scroll = 0, hscroll = 0, click = -1; in atkbd_interrupt() local 471 scroll = 1; in atkbd_interrupt() 474 scroll = 2; in atkbd_interrupt() 477 scroll = 4; in atkbd_interrupt() 480 scroll = 8; in atkbd_interrupt() 513 if (atkbd->scroll) { in atkbd_interrupt() [all …]
|
/linux-2.6.39/Documentation/input/ |
D | sentelic.txt | 103 Bit4 => scroll up 104 Bit5 => scroll down 105 Bit6 => scroll left 106 Bit7 => scroll right 204 Byte 4: Bit7 => scroll right button 205 Bit6 => scroll left button 206 Bit5 => scroll down button 207 Bit4 => scroll up button 242 Bit4 => scroll down button 243 Bit5 => scroll up button [all …]
|
D | elantech.txt | 138 V: 1 = enable vertical scroll area 139 H: 1 = enable horizontal scroll area 147 scroll area width (small: 0x40 ... wide: 0xff) 204 ds3..ds0 = scroll wheel amount and direction 216 h = 1 when horizontal scroll action 224 ds7..ds0 = vertical scroll amount and direction 307 S: 1 = enable vertical scroll
|
D | event-codes.txt | 137 them on the touchpad in an effort to scroll content on screen, 160 - These codes are used for vertical and horizontal scroll wheels, 234 scroll wheel events where available.
|
/linux-2.6.39/arch/x86/boot/compressed/ |
D | misc.c | 150 static void scroll(void) in scroll() function 202 scroll(); in __putstr() 210 scroll(); in __putstr()
|
/linux-2.6.39/drivers/input/mouse/ |
D | synaptics.h | 122 signed char scroll; member 137 int scroll; member
|
D | synaptics.c | 443 hw->scroll = (signed char)(buf[1]); in synaptics_parse_hw_state() 531 if (hw.scroll) { in synaptics_process_packet() 532 priv->scroll += hw.scroll; in synaptics_process_packet() 534 while (priv->scroll >= 4) { in synaptics_process_packet() 539 priv->scroll -= 4; in synaptics_process_packet() 541 while (priv->scroll <= -4) { in synaptics_process_packet() 546 priv->scroll += 4; in synaptics_process_packet()
|
/linux-2.6.39/Documentation/fb/ |
D | uvesafb.txt | 55 # modprobe uvesafb mode_option=1024x768-32 mtrr=3 scroll=ywrap (module) 74 used a parameter of the scroll option, e.g. scroll=ypan.)
|
D | vesafb.txt | 139 redraw scroll by redrawing the affected part of the screen, this
|
D | sisfb.txt | 141 noypan - disable y-panning and scroll by redrawing the entire screen.
|
/linux-2.6.39/Documentation/s390/ |
D | 3270.ChangeLog | 41 scroll-timeout code.
|
/linux-2.6.39/arch/mn10300/boot/compressed/ |
D | misc.c | 173 static inline void scroll(void) in scroll() function
|
/linux-2.6.39/Documentation/dvb/ |
D | faq.txt | 47 numpad pgup/pgdown (NP9 / NP3) keys to scroll through the channel osd
|
/linux-2.6.39/drivers/video/ |
D | uvesafb.c | 2021 module_param_named(scroll, ypan, scroll, 0); 2022 MODULE_PARM_DESC(scroll,
|
/linux-2.6.39/arch/powerpc/ |
D | Kconfig.debug | 29 scroll off the screen.
|
/linux-2.6.39/Documentation/ |
D | oops-tracing.txt | 35 nothing. If the messages scroll off the top of the console, you
|
D | kernel-parameters.txt | 365 atkbd.scroll= [HW] Enable scroll wheel on MS Office and similar 1763 no-scroll [VGA] Disables scrollback.
|
/linux-2.6.39/Documentation/trace/ |
D | ftrace-design.txt | 272 scroll your reader back up if you got over eager.
|
/linux-2.6.39/Documentation/scsi/ |
D | aic7xxx_old.txt | 228 helpful when some problem causes infinite reset loops that scroll too
|
/linux-2.6.39/Documentation/m68k/ |
D | kernel-options.txt | 478 therefore we don't support hardware-dependent functions like hardware-scroll,
|