| /Linux-v5.15/Documentation/input/devices/ | 
| D | sentelic.rst | 37 	    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 …]
 
 | 
| D | elantech.rst | 243          L, R, M = 1 when Left, Right, Middle mouse button pressed311             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 …]
 
 | 
| /Linux-v5.15/Documentation/devicetree/bindings/input/ | 
| D | input.yaml | 14     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
 38       Duration in seconds which the key should be kept pressed for device to
 39       reset automatically. Device with key pressed reset feature can specify
 
 | 
| D | adc-keys.txt | 22 				     considered pressed.58 | 2.000.000 <= value             | no key pressed         |
 60 | 1.500.000 <= value < 2.000.000 | KEY_VOLUMEUP pressed   |
 62 | 1.000.000 <= value < 1.500.000 | KEY_VOLUMEDOWN pressed |
 64 |   500.000 <= value < 1.000.000 | KEY_ENTER pressed      |
 66 |              value <   500.000 | no key pressed         |
 
 | 
| D | ti,palmas-pwrbutton.txt | 17   button should be kept pressed for Palmas to power off automatically.21   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).
 
 | 
| /Linux-v5.15/drivers/platform/surface/ | 
| D | surfacepro3_button.c | 79 	bool pressed = false;  in surface_button_notify()  local84 		pressed = true;  in surface_button_notify()
 91 		pressed = true;  in surface_button_notify()
 98 		pressed = true;  in surface_button_notify()
 105 		pressed = true;  in surface_button_notify()
 121 	if (pressed)  in surface_button_notify()
 125 	input_report_key(input, key_code, pressed?1:0);  in surface_button_notify()
 
 | 
| /Linux-v5.15/drivers/input/keyboard/ | 
| D | mcs_touchkey.c | 61 	unsigned int pressed;  in mcs_touchkey_interrupt()  local70 	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()
 
 | 
| D | locomokbd.c | 106  * 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()
 
 | 
| D | mtk-pmic-keys.c | 151 	u32 key_deb, pressed;  in mtk_pmic_keys_irq_handler_thread()  local157 	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()
 
 | 
| D | mpr121_touchkey.c | 148 		unsigned int key_val, pressed;  in mpr_touchkey_report()  local150 		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()
 
 | 
| D | lm8333.c | 80 	u8 code, pressed;  in lm8333_key_handler()  local92 		pressed = keys[i] & 0x80;  in lm8333_key_handler()
 96 		input_report_key(input, lm8333->keycodes[code], pressed);  in lm8333_key_handler()
 
 | 
| D | cros_ec_keyb.c | 7 // communicating the keyboard state (which keys are pressed) from a keyboard EC41  * @old_kb_state: bitmap of keys pressed last scan
 122  * Returns true when there is at least one combination of pressed keys that
 132 	 * Ghosting happens if for any pressed key X there are other keys  in cros_ec_keyb_has_ghosting()
 133 	 * pressed both in the same row and column of X as, for instance,  in cros_ec_keyb_has_ghosting()
 141 	 * In this case only X, Y, and Z are pressed, but g appears to be  in cros_ec_keyb_has_ghosting()
 142 	 * pressed too (see Wikipedia).  in cros_ec_keyb_has_ghosting()
 
 | 
| D | samsung-keypad.c | 110 	unsigned int pressed;  in samsung_keypad_report()  local125 			pressed = row_state[col] & (1 << row);  in samsung_keypad_report()
 129 				pressed ? "pressed" : "released", row, col);  in samsung_keypad_report()
 135 					keypad->keycodes[val], pressed);  in samsung_keypad_report()
 
 | 
| /Linux-v5.15/include/linux/platform_data/ | 
| D | keypad-omap.h | 27 /* Group (0..3) -- when multiple keys are pressed, only the28  * keys pressed in the same group are considered as pressed. This is
 
 | 
| /Linux-v5.15/Documentation/ABI/testing/ | 
| D | sysfs-driver-input-axp-pek | 4 Description:	Startup time in us. Board is powered on if the button is pressed10 Description:	Shutdown time in us. Board is powered off if the button is pressed
 
 | 
| D | sysfs-driver-wacom | 30 		button is pressed on the stylus. This luminance level is31 		normally lower than the level when a button is pressed.
 40 		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…47 Description:	This setting controls how fast the trackpoint needs to be pressed to generate a mouse …
 
 | 
| /Linux-v5.15/drivers/input/misc/ | 
| D | da9052_onkey.c | 38 		bool pressed = !(ret & DA9052_STATUSA_NONKEY);  in da9052_onkey_query()  local40 		input_report_key(onkey->input, KEY_POWER, pressed);  in da9052_onkey_query()
 48 		if (pressed)  in da9052_onkey_query()
 
 | 
| /Linux-v5.15/drivers/input/mouse/ | 
| D | focaltech.c | 106 	/* 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()
 
 | 
| /Linux-v5.15/arch/arm/mach-s3c/ | 
| D | mach-n30.c | 514 	/* 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()
 
 | 
| /Linux-v5.15/Documentation/ABI/stable/ | 
| D | sysfs-driver-speakup | 133 		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."
 
 | 
| /Linux-v5.15/drivers/accessibility/speakup/ | 
| D | fakekey.c | 15 #define PRESSED 1  macro69 	input_report_key(virt_keyboard, KEY_DOWN, PRESSED);  in speakup_fake_down_arrow()
 
 | 
| /Linux-v5.15/drivers/hid/usbhid/ | 
| D | usbkbd.c | 60  *		keys were pressed. By comparing with the current list of keys61  *		that are pressed, we are able to see key releases.
 62  * @irq:	URB for receiving a list of keys that are pressed when a
 63  *		new key is pressed or a key that was pressed is released.
 136 					 "Unknown key (scancode %#x) pressed.\n",  in usb_kbd_irq()
 
 | 
| /Linux-v5.15/drivers/platform/x86/ | 
| D | fujitsu-tablet.c | 274 	int pressed;  in fujitsu_interrupt()  local292 			pressed = keymask & changed & BIT(i);  in fujitsu_interrupt()
 294 			if (pressed)  in fujitsu_interrupt()
 297 			input_report_key(fujitsu.idev, keycode, pressed);  in fujitsu_interrupt()
 
 |