| /linux-4.4.14/Documentation/input/ |
| D | sentelic.txt | 26 Bit2 => Middle Button, 1 is pressed, 0 is not pressed. 27 Bit1 => Right Button, 1 is pressed, 0 is not pressed. 28 Bit0 => Left Button, 1 is pressed, 0 is not pressed. 33 Bit4 => 1 = 4th mouse button is pressed, Forward one page. 34 0 = 4th mouse button is not pressed. 35 Bit5 => 1 = 5th mouse button is pressed, Backward one page. 36 0 = 5th mouse button is not pressed. 55 Bit2 => Middle Button, 1 is pressed, 0 is not pressed. 56 Bit1 => Right Button, 1 is pressed, 0 is not pressed. 57 Bit0 => Left Button, 1 is pressed, 0 is not pressed. [all …]
|
| D | elantech.txt | 248 L, R, M = 1 when Left, Right, Middle mouse button pressed 312 L, R = 1 when Left, Right mouse button pressed 314 D, U = 1 when rocker switch pressed Up, Down 321 L, R = 1 when Left, Right mouse button pressed 406 … (((SA1 & 0x0C) != 0x0C) && ((SA1 & 0xC0) == 0x80)) || // check Byte 1 (one finger pressed) 409 … (((SB1 & 0x0E) != 0x08) && ((SA1 & 0xC0) == 0x80)) || // check Byte 4 (one finger pressed) 429 L, R = 1 when Left, Right mouse button pressed 453 b2 (on EF113 only, 0 otherwise), b2.R.L indicates one button pressed: 491 L, R = 1 when Left, Right mouse button pressed 572 L, R = 1 when Left, Right mouse button pressed [all …]
|
| D | input-programming.txt | 12 pressed or released a BUTTON_IRQ happens. The driver could look like: 179 pressed, zero value means key released. The input code generates events only
|
| D | alps.txt | 32 00-00-64 if no buttons are pressed. The bits 0-2 of the first byte will be 1s 33 if some buttons are pressed.
|
| D | joystick-api.txt | 46 #define JS_EVENT_BUTTON 0x01 /* button pressed/released */
|
| D | atarikbd.txt | 60 button being pressed or released, or motion in either axis exceeding a 235 button is pressed or released. Otherwise the mouse buttons behave as if they
|
| /linux-4.4.14/drivers/platform/x86/ |
| D | surfacepro3_button.c | 75 bool pressed = false; in surface_button_notify() local 80 pressed = true; in surface_button_notify() 87 pressed = true; in surface_button_notify() 94 pressed = true; in surface_button_notify() 101 pressed = true; in surface_button_notify() 114 if (pressed) in surface_button_notify() 118 input_report_key(input, key_code, pressed?1:0); in surface_button_notify()
|
| D | fujitsu-tablet.c | 286 int pressed; in fujitsu_interrupt() local 304 pressed = keymask & changed & BIT(i); in fujitsu_interrupt() 306 if (pressed) in fujitsu_interrupt() 309 input_report_key(fujitsu.idev, keycode, pressed); in fujitsu_interrupt()
|
| /linux-4.4.14/drivers/input/keyboard/ |
| D | mcs_touchkey.c | 65 unsigned int pressed; in mcs_touchkey_interrupt() local 74 pressed = (val & (1 << chip->pressbit)) >> chip->pressbit; in mcs_touchkey_interrupt() 76 pressed ^= chip->press_invert; in mcs_touchkey_interrupt() 79 if (pressed) { in mcs_touchkey_interrupt() 89 input_report_key(input, data->key_code, pressed); in mcs_touchkey_interrupt() 93 pressed ? "pressed" : "released"); in mcs_touchkey_interrupt()
|
| D | mpr121_touchkey.c | 90 unsigned int key_num, key_val, pressed; in mpr_touchkey_interrupt() local 109 pressed = reg & (1 << key_num); in mpr_touchkey_interrupt() 115 input_report_key(input, key_val, pressed); in mpr_touchkey_interrupt() 119 pressed ? "pressed" : "released"); in mpr_touchkey_interrupt()
|
| D | lm8333.c | 83 u8 code, pressed; in lm8333_key_handler() local 95 pressed = keys[i] & 0x80; in lm8333_key_handler() 99 input_report_key(input, lm8333->keycodes[code], pressed); in lm8333_key_handler()
|
| D | locomokbd.c | 146 unsigned int scancode, pressed, key; in locomokbd_scankeyboard() local 149 pressed = rowd & KB_ROWMASK(row); in locomokbd_scankeyboard() 152 input_report_key(locomokbd->input, key, pressed); in locomokbd_scankeyboard() 153 if (likely(!pressed)) in locomokbd_scankeyboard()
|
| D | samsung-keypad.c | 114 unsigned int pressed; in samsung_keypad_report() local 129 pressed = row_state[col] & (1 << row); in samsung_keypad_report() 133 pressed ? "pressed" : "released", row, col); in samsung_keypad_report() 139 keypad->keycodes[val], pressed); in samsung_keypad_report()
|
| /linux-4.4.14/drivers/input/misc/ |
| D | da9052_onkey.c | 42 bool pressed = !(ret & DA9052_STATUSA_NONKEY); in da9052_onkey_query() local 44 input_report_key(onkey->input, KEY_POWER, pressed); in da9052_onkey_query() 52 if (pressed) in da9052_onkey_query()
|
| D | xen-kbdfront.c | 85 event->key.pressed); in input_handler()
|
| /linux-4.4.14/Documentation/ABI/testing/ |
| D | sysfs-driver-input-axp-pek | 4 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
|
| D | sysfs-driver-wacom | 29 button is pressed on the stylus. This luminance level is 30 normally lower than the level when a button is pressed. 38 pressed on the stylus.
|
| D | sysfs-driver-hid-lenovo | 4 Description: This controls if mouse clicks should be generated if the trackpoint is quickly pressed… 41 Description: This setting controls how fast the trackpoint needs to be pressed to generate a mouse …
|
| /linux-4.4.14/drivers/input/mouse/ |
| D | focaltech.c | 117 bool pressed; member 155 input_report_key(psmouse->dev, BTN_LEFT, state->pressed); in focaltech_report_state() 167 state->pressed = (packet[0] >> 4) & 1; in focaltech_process_touch_packet() 197 state->pressed = (packet[0] >> 4) & 1; in focaltech_process_abs_packet() 212 state->pressed = packet[0] >> 7; in focaltech_process_rel_packet()
|
| /linux-4.4.14/Documentation/devicetree/bindings/input/ |
| D | ti,palmas-pwrbutton.txt | 18 button should be kept pressed for Palmas to power off automatically. 22 which the power button should be kept pressed for Palmas to register
|
| D | pxa27x-keypad.txt | 8 recognized when it is pressed. It is a u32 value, and bit[31:16] 23 is low, the key is pressed(active).
|
| D | qcom,pm8941-pwrkey.txt | 26 Definition: time in microseconds that key must be pressed or released
|
| D | lpc32xx-key.txt | 13 - linux,keymap: the key-code to be reported when the key is pressed
|
| D | qcom,pm8xxx-pwrkey.txt | 28 Definition: time in microseconds that key must be pressed or release
|
| D | sun4i-lradc-keys.txt | 16 - voltage: Voltage in µV at lradc input when this key is pressed.
|
| D | input-reset.txt | 18 timeout-ms: duration keys must be pressed together in milliseconds before
|
| D | gpio-keys-polled.txt | 22 value is sent for events this button generates when pressed.
|
| D | imx-keypad.txt | 6 and decoding one or multiple keys pressed simultaneously on a keypad.
|
| D | qcom,pm8xxx-keypad.txt | 57 Definition: time in microseconds that key must be pressed or release
|
| D | nvidia,tegra20-kbc.txt | 28 key is pressed.
|
| D | samsung-keypad.txt | 33 - linux,code: the key-code to be reported when the key is pressed
|
| /linux-4.4.14/drivers/input/touchscreen/ |
| D | eeti_ts.c | 71 unsigned int x, y, res, pressed, to = 100; in eeti_ts_read() local 90 pressed = buf[0] & REPORT_BIT_PRESSED; in eeti_ts_read() 110 input_report_key(priv->input, BTN_TOUCH, !!pressed); in eeti_ts_read()
|
| D | mms114.c | 65 u8 id:4, reserved_bit4:1, type:2, pressed:1; member 179 id, touch->type, touch->pressed, in mms114_process_mt() 183 input_mt_report_slot_state(input_dev, MT_TOOL_FINGER, touch->pressed); in mms114_process_mt() 185 if (touch->pressed) { in mms114_process_mt()
|
| /linux-4.4.14/include/xen/interface/io/ |
| D | kbdif.h | 57 uint8_t pressed; /* 1 if pressed; 0 otherwise */ member
|
| /linux-4.4.14/Documentation/devicetree/bindings/extcon/ |
| D | extcon-sm5502.txt | 6 attached or detached and button is pressed or released. It is interfaced to
|
| /linux-4.4.14/drivers/tty/vt/ |
| D | keyboard.c | 923 static unsigned pressed, committing; in k_brl() local 941 pressed |= 1 << (value - 1); in k_brl() 943 committing = pressed; in k_brl() 948 committing = pressed; in k_brl() 951 pressed &= ~(1 << (value - 1)); in k_brl() 952 if (!pressed && committing) { in k_brl() 961 pressed &= ~(1 << (value - 1)); in k_brl()
|
| /linux-4.4.14/Documentation/devicetree/bindings/mips/img/ |
| D | xilfpga.txt | 77 needs to be pressed.
|
| /linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
| D | p1022ds.dtsi | 131 * IRQ8 is generated if the "EVENT" switch is pressed
|
| /linux-4.4.14/drivers/char/ |
| D | Kconfig | 201 time the orange button is pressed a number of times, the number of 202 times the button was pressed will be written to that device. 205 perform actions based on how many times the button is pressed in a
|
| /linux-4.4.14/arch/arm/boot/dts/ |
| D | armada-xp-synology-ds414.dts | 184 * button is pressed. The converter needs to be
|
| /linux-4.4.14/Documentation/video4linux/ |
| D | vivid.txt | 771 Inject V4L2_BUF_FLAG_ERROR: when pressed, the next frame returned by 775 Inject VIDIOC_REQBUFS Error: when pressed, the next REQBUFS or CREATE_BUFS 779 Inject VIDIOC_QBUF Error: when pressed, the next VIDIOC_QBUF or 783 Inject VIDIOC_STREAMON Error: when pressed, the next VIDIOC_STREAMON ioctl 787 Inject Fatal Streaming Error: when pressed, the streaming core will be
|
| /linux-4.4.14/include/linux/mfd/ |
| D | cros_ec_commands.h | 1656 uint8_t pressed; member
|
| /linux-4.4.14/drivers/staging/panel/ |
| D | Kconfig | 62 supports simultaneous keys pressed when the keypad supports them.
|
| /linux-4.4.14/Documentation/networking/ |
| D | README.ipw2100 | 180 is controlled through a button being pressed and a software driver then making
|
| /linux-4.4.14/Documentation/ |
| D | sysrq.txt | 46 handle so many keys being pressed at the same time, so you might
|
| /linux-4.4.14/Documentation/s390/ |
| D | 3270.txt | 217 when pressed.
|
| /linux-4.4.14/Documentation/devicetree/bindings/crypto/ |
| D | fsl-sec4.txt | 411 system if pressed after system suspend.
|
| /linux-4.4.14/Documentation/laptops/ |
| D | thinkpad-acpi.txt | 486 keys are pressed or released (either that, or we don't know how to, yet). 518 0x6000 KEYBOARD: Numlock key pressed 519 0x6005 KEYBOARD: Fn key pressed (TO BE VERIFIED)
|
| /linux-4.4.14/drivers/staging/speakup/ |
| D | spkguide.txt | 875 pressed the enter key. In this case, we are echoing strings that we 1016 and you pressed keypad 3. Speakup says: 1023 example, Speakup said that you pressed "keypad 3." 1028 Again, these are part of the help system. For instance, if you had pressed
|
| /linux-4.4.14/Documentation/usb/ |
| D | usb-serial.txt | 61 pressed BEFORE trying to get any program to communicate to the device.
|
| D | power-management.txt | 76 pressed, or a suspended USB hub resuming when a device is plugged in.
|
| /linux-4.4.14/Documentation/cdrom/ |
| D | cdrom-standard.tex | 427 pressed \cdrom s may benefit from less-than-maximum head rate. Modern
|
| /linux-4.4.14/Documentation/virtual/uml/ |
| D | UserModeLinux-HOWTO.txt | 2425 # What to do when CTRL-ALT-DEL is pressed.
|