Home
last modified time | relevance | path

Searched full:pressed (Results 1 – 25 of 460) sorted by relevance

12345678910>>...19

/OK3568_Linux_fs/kernel/Documentation/input/devices/
H A Dsentelic.rst37 Bit2 => Middle Button, 1 is pressed, 0 is not pressed.
38 Bit1 => Right Button, 1 is pressed, 0 is not pressed.
39 Bit0 => Left Button, 1 is pressed, 0 is not pressed.
44 Bit4 => 1 = 4th mouse button is pressed, Forward one page.
45 0 = 4th mouse button is not pressed.
46 Bit5 => 1 = 5th mouse button is pressed, Backward one page.
47 0 = 5th mouse button is not pressed.
69 Bit2 => Middle Button, 1 is pressed, 0 is not pressed.
70 Bit1 => Right Button, 1 is pressed, 0 is not pressed.
71 Bit0 => Left Button, 1 is pressed, 0 is not pressed.
[all …]
H A Delantech.rst243 L, R, M = 1 when Left, Right, Middle mouse button pressed
311 L, R = 1 when Left, Right mouse button pressed
313 D, U = 1 when rocker switch pressed Up, Down
320 L, R = 1 when Left, Right mouse button pressed
409 … (((SA1 & 0x0C) != 0x0C) && ((SA1 & 0xC0) == 0x80)) || // check Byte 1 (one finger pressed)
412 … (((SB1 & 0x0E) != 0x08) && ((SA1 & 0xC0) == 0x80)) || // check Byte 4 (one finger pressed)
433 L, R = 1 when Left, Right mouse button pressed
457 b2 (on EF113 only, 0 otherwise), b2.R.L indicates one button pressed:
495 L, R = 1 when Left, Right mouse button pressed
578 L, R = 1 when Left, Right mouse button pressed
[all …]
/OK3568_Linux_fs/external/recovery/
H A Drecovery_ui.h23 // Called in the input thread when a new key (key_code) is pressed.
25 // keys are already pressed. Return true if the text display should
29 // Called in the input thread when a new key (key_code) is pressed.
31 // keys are already pressed. Return true if the device should reboot
36 // a key is pressed. key is the code of the key pressed; visible is
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/
H A Drecovery_ui.h23 // Called in the input thread when a new key (key_code) is pressed.
25 // keys are already pressed. Return true if the text display should
29 // Called in the input thread when a new key (key_code) is pressed.
31 // keys are already pressed. Return true if the device should reboot
36 // a key is pressed. key is the code of the key pressed; visible is
/OK3568_Linux_fs/u-boot/arch/sandbox/include/asm/
H A Dsdl.h38 * sandbox_sdl_scan_keys() - scan for pressed keys
40 * Works out which keys are pressed and returns a list
49 * sandbox_sdl_key_pressed() - check if a particular key is pressed
52 * @return 0 if pressed, -ENOENT if not pressed. -ENODEV if keybord not
/OK3568_Linux_fs/buildroot/dl/qt5quickcontrols2/
HDqtquickcontrols2-0d3d39e821ea7634c174a29910c18d7101bce6f7.tar.bz2pax_global_header qtquickcontrols2-0d3d39e821ea7634c174a29910c18d7101bce6f7/ qtquickcontrols2-0d3d39e821ea7634c174a29910c18d7101bce6f7/.qmake.conf qtquickcontrols2-0d3d39e821ea7634c174a29910c18d7101bce6f7 ...
/OK3568_Linux_fs/kernel/drivers/platform/x86/
H A Dsurfacepro3_button.c81 bool pressed = false; in surface_button_notify() local
86 pressed = true; in surface_button_notify()
93 pressed = true; in surface_button_notify()
100 pressed = true; in surface_button_notify()
107 pressed = true; in surface_button_notify()
123 if (pressed) in surface_button_notify()
127 input_report_key(input, key_code, pressed?1:0); in surface_button_notify()
/OK3568_Linux_fs/kernel/drivers/input/keyboard/
H A Dmcs_touchkey.c61 unsigned int pressed; in mcs_touchkey_interrupt() local
70 pressed = (val & (1 << chip->pressbit)) >> chip->pressbit; in mcs_touchkey_interrupt()
72 pressed ^= chip->press_invert; in mcs_touchkey_interrupt()
75 if (pressed) { in mcs_touchkey_interrupt()
85 input_report_key(input, data->key_code, pressed); in mcs_touchkey_interrupt()
89 pressed ? "pressed" : "released"); in mcs_touchkey_interrupt()
H A Dlocomokbd.c106 * The LoCoMo keyboard only generates interrupts when a key is pressed.
107 * So when a key is pressed, we enable a timer. This timer scans the
131 unsigned int scancode, pressed, key; in locomokbd_scankeyboard() local
134 pressed = rowd & KB_ROWMASK(row); in locomokbd_scankeyboard()
137 input_report_key(locomokbd->input, key, pressed); in locomokbd_scankeyboard()
138 if (likely(!pressed)) in locomokbd_scankeyboard()
145 * if it was pressed for more than a second. */ in locomokbd_scankeyboard()
165 /* if any keys are pressed, enable the timer */ in locomokbd_scankeyboard()
H A Dmtk-pmic-keys.c151 u32 key_deb, pressed; in mtk_pmic_keys_irq_handler_thread() local
157 pressed = !key_deb; in mtk_pmic_keys_irq_handler_thread()
159 input_report_key(info->keys->input_dev, info->keycode, pressed); in mtk_pmic_keys_irq_handler_thread()
163 pressed ? "pressed" : "released", info->keycode); in mtk_pmic_keys_irq_handler_thread()
H A Dmpr121_touchkey.c148 unsigned int key_val, pressed; in mpr_touchkey_report() local
150 pressed = reg & BIT(key_num); in mpr_touchkey_report()
154 input_report_key(input, key_val, pressed); in mpr_touchkey_report()
157 pressed ? "pressed" : "released"); in mpr_touchkey_report()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/input/
H A Dinput.yaml14 description: Enable autorepeat when key is pressed and held down.
32 Duration in seconds which the key should be kept pressed for device to
33 power off automatically. Device with key pressed shutdown feature can
/OK3568_Linux_fs/kernel/include/linux/platform_data/
H A Dkeypad-omap.h27 /* Group (0..3) -- when multiple keys are pressed, only the
28 * keys pressed in the same group are considered as pressed. This is
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/geoflickr/flickrmobile/
H A DButton.qml66 id: pressed
83 name: "Pressed"
84 when: mouseRegion.pressed == true
85 PropertyChanges { target: pressed; opacity: 1 }
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.serial_multi13 *) The default console depends on the keys pressed:
14 - SMC if keys not pressed (modem not enabled)
15 - SCC if keys pressed (modem enabled)
/OK3568_Linux_fs/u-boot/common/
H A Dusb_kbd.c168 unsigned char modifier, int pressed) in usb_kbd_translate() argument
173 if (pressed == 0) { in usb_kbd_translate()
178 if (pressed == 2) { in usb_kbd_translate()
194 /* Handle CAPSLock + Shift pressed simultaneously */ in usb_kbd_translate()
203 /* Shift pressed */ in usb_kbd_translate()
217 if (pressed == 1) { in usb_kbd_translate()
318 /* No combo key pressed */ in usb_kbd_irq_worker()
321 /* Left or Right Ctrl pressed */ in usb_kbd_irq_worker()
330 /* Key is still pressed */ in usb_kbd_irq_worker()
405 * then we check key-pressed every second (first check may be
/OK3568_Linux_fs/u-boot/drivers/input/
H A Dtegra-kbc.c56 * and lets us grab keys pressed during reset.
100 * were simultaneously pressed during that scan.
108 * pressed.
129 * are pressed.
152 * In order to detect keys pressed on boot, wait for the hardware to
177 * Check the tegra keyboard, and send any keys that are pressed.
/OK3568_Linux_fs/external/rk_pcba_test/
H A Decho_touchpad_test.c64 log_info("--> <pause/play> key pressed!\n"); in main()
67 log_info("--> <previous> key pressed!\n"); in main()
70 log_info("--> <next> key pressed!\n"); in main()
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinkeybd.c268 /* Check if modifier keys are pressed, and if so, fake a press */ in winRestoreModeKeyStates()
279 If AltGr and CtrlL appear to be pressed, assume the in winRestoreModeKeyStates()
342 * when AltGr is pressed/released on a non-U.S. keyboard.
460 * Lift any modifier keys that are pressed
476 /* Pop key if pressed */ in winKeybdReleaseKeys()
480 /* Reset pressed flag for keys */ in winKeybdReleaseKeys()
532 /* Only one shift release message is sent even if both are pressed.
H A Dwinmouse.c263 * Button was pressed, no press is cached, in winMouseButtonsHandle()
272 * is not pressed within the timeout time. in winMouseButtonsHandle()
282 * Button press is cached, other button was pressed, in winMouseButtonsHandle()
286 /* Mouse button was cached and other button was pressed */ in winMouseButtonsHandle()
300 * and before the other mouse button was pressed. in winMouseButtonsHandle()
/OK3568_Linux_fs/kernel/drivers/input/mouse/
H A Dfocaltech.c106 /* True if the clickpad has been pressed. */
107 bool pressed; member
145 input_report_key(dev, BTN_LEFT, state->pressed); in focaltech_report_state()
157 state->pressed = (packet[0] >> 4) & 1; in focaltech_process_touch_packet()
187 state->pressed = (packet[0] >> 4) & 1; in focaltech_process_abs_packet()
202 state->pressed = packet[0] >> 7; in focaltech_process_rel_packet()
/OK3568_Linux_fs/kernel/arch/arm/mach-s3c/
H A Dmach-n30.c514 /* GPF0 input 0=power button pressed in n30_hwinit()
516 * GPF2 N30 1=reset button pressed (inverted compared to the rest) in n30_hwinit()
517 * N35/PiN 0=reset button pressed in n30_hwinit()
520 * GPF4 input 0=button 4 pressed in n30_hwinit()
521 * GPF5 input 0=button 3 pressed in n30_hwinit()
522 * GPF6 input 0=button 2 pressed in n30_hwinit()
523 * GPF7 input 0=button 1 pressed in n30_hwinit()
540 * GPG7 input 0=thumbwheel pressed in n30_hwinit()
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-driver-input-axp-pek4 Description: Startup time in us. Board is powered on if the button is pressed
10 Description: Shutdown time in us. Board is powered off if the button is pressed
/OK3568_Linux_fs/kernel/drivers/input/misc/
H A Dda9052_onkey.c38 bool pressed = !(ret & DA9052_STATUSA_NONKEY); in da9052_onkey_query() local
40 input_report_key(onkey->input, KEY_POWER, pressed); in da9052_onkey_query()
48 if (pressed) in da9052_onkey_query()
/OK3568_Linux_fs/kernel/Documentation/ABI/stable/
H A Dsysfs-driver-speakup133 keys are pressed. If say_control is set to zero, shift, ctrl,
134 and alt are not spoken when they are pressed.
151 review command is pressed twice quickly to speak the current
206 you have activated help mode, and you pressed
217 had pressed speakup + keypad 3, you would hear:
255 previous example, Speakup said that you pressed "keypad 3."

12345678910>>...19