/linux-4.1.27/drivers/input/ |
D | input-compat.c | 18 struct input_event *event) in input_event_from_user() 34 if (copy_from_user(event, buffer, sizeof(struct input_event))) in input_event_from_user() 42 const struct input_event *event) in input_event_to_user() 58 if (copy_to_user(buffer, event, sizeof(struct input_event))) in input_event_to_user() 103 struct input_event *event) in input_event_from_user() 105 if (copy_from_user(event, buffer, sizeof(struct input_event))) in input_event_from_user() 112 const struct input_event *event) in input_event_to_user() 114 if (copy_to_user(buffer, event, sizeof(struct input_event))) in input_event_to_user()
|
D | input-mt.c | 149 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, -1); in input_mt_report_slot_state() 157 input_event(dev, EV_ABS, ABS_MT_TRACKING_ID, id); in input_mt_report_slot_state() 158 input_event(dev, EV_ABS, ABS_MT_TOOL_TYPE, tool_type); in input_mt_report_slot_state() 175 input_event(dev, EV_KEY, BTN_TOOL_FINGER, count == 1); in input_mt_report_finger_count() 176 input_event(dev, EV_KEY, BTN_TOOL_DOUBLETAP, count == 2); in input_mt_report_finger_count() 177 input_event(dev, EV_KEY, BTN_TOOL_TRIPLETAP, count == 3); in input_mt_report_finger_count() 178 input_event(dev, EV_KEY, BTN_TOOL_QUADTAP, count == 4); in input_mt_report_finger_count() 179 input_event(dev, EV_KEY, BTN_TOOL_QUINTTAP, count == 5); in input_mt_report_finger_count() 220 input_event(dev, EV_KEY, BTN_TOUCH, count > 0); in input_mt_report_pointer_emulation() 228 input_event(dev, EV_ABS, ABS_X, x); in input_mt_report_pointer_emulation() [all …]
|
D | input-compat.h | 71 sizeof(struct input_event_compat) : sizeof(struct input_event); in input_event_size() 78 return sizeof(struct input_event); in input_event_size() 84 struct input_event *event); 87 const struct input_event *event);
|
D | evdev.c | 62 struct input_event buffer[]; 71 struct input_event *ev; in __evdev_flush_queue() 113 struct input_event ev; in __evdev_queue_syn_dropped() 185 const struct input_event *event) in __pass_event() 217 struct input_event event; in evdev_pass_values() 444 bufsize * sizeof(struct input_event); in evdev_open() 479 struct input_event event; in evdev_write() 512 struct input_event *event) in evdev_fetch_next_event() 534 struct input_event event; in evdev_read()
|
D | sparse-keymap.c | 278 input_event(dev, EV_MSC, MSC_SCAN, ke->code); in sparse_keymap_report_entry()
|
D | input.c | 429 void input_event(struct input_dev *dev, in input_event() function 441 EXPORT_SYMBOL(input_event);
|
/linux-4.1.27/include/linux/ |
D | input.h | 384 void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value); 389 input_event(dev, EV_KEY, code, !!value); in input_report_key() 394 input_event(dev, EV_REL, code, value); in input_report_rel() 399 input_event(dev, EV_ABS, code, value); in input_report_abs() 404 input_event(dev, EV_FF_STATUS, code, value); in input_report_ff_status() 409 input_event(dev, EV_SW, code, !!value); in input_report_switch() 414 input_event(dev, EV_SYN, SYN_REPORT, 0); in input_sync() 419 input_event(dev, EV_SYN, SYN_MT_REPORT, 0); in input_mt_sync()
|
D | uinput.h | 69 struct input_event buff[UINPUT_BUFFER_SIZE];
|
/linux-4.1.27/drivers/hid/ |
D | hid-ntrig.c | 634 input_event(input, EV_ABS, ABS_X, nd->x); in ntrig_event() 635 input_event(input, EV_ABS, ABS_Y, nd->y); in ntrig_event() 727 input_event(input, EV_ABS, ABS_X, nd->x); in ntrig_event() 728 input_event(input, EV_ABS, ABS_Y, nd->y); in ntrig_event() 732 input_event(input, EV_ABS, ABS_MT_POSITION_X, nd->x); in ntrig_event() 733 input_event(input, EV_ABS, ABS_MT_POSITION_Y, nd->y); in ntrig_event() 740 input_event(input, EV_ABS, in ntrig_event() 742 input_event(input, EV_ABS, in ntrig_event() 744 input_event(input, EV_ABS, in ntrig_event() 747 input_event(input, EV_ABS, in ntrig_event() [all …]
|
D | hid-gyration.c | 67 input_event(input, usage->type, usage->code, 1); in gyration_event() 69 input_event(input, usage->type, usage->code, 0); in gyration_event()
|
D | hid-a4tech.c | 69 input_event(input, EV_REL, value ? REL_HWHEEL : in a4_event() 81 input_event(input, usage->type, REL_HWHEEL, value); in a4_event()
|
D | hid-zydacron.c | 126 input_event(zc->input_ep81, EV_KEY, key, 0); in zc_raw_event() 155 input_event(zc->input_ep81, EV_KEY, key, 1); in zc_raw_event()
|
D | hid-apple.c | 188 input_event(input, usage->type, usage->code, value); in hidinput_apple_event() 220 input_event(input, usage->type, trans->to, in hidinput_apple_event() 241 input_event(input, usage->type, trans->to, in hidinput_apple_event() 253 input_event(input, usage->type, trans->to, value); in hidinput_apple_event() 262 input_event(input, usage->type, trans->to, value); in hidinput_apple_event() 281 input_event(field->hidinput->input, usage->type, usage->code, in apple_event()
|
D | hid-multitouch.c | 598 input_event(input, EV_ABS, ABS_MT_POSITION_X, s->x); in mt_complete_slot() 599 input_event(input, EV_ABS, ABS_MT_POSITION_Y, s->y); in mt_complete_slot() 600 input_event(input, EV_ABS, ABS_MT_TOOL_X, s->cx); in mt_complete_slot() 601 input_event(input, EV_ABS, ABS_MT_TOOL_Y, s->cy); in mt_complete_slot() 602 input_event(input, EV_ABS, ABS_MT_DISTANCE, in mt_complete_slot() 604 input_event(input, EV_ABS, ABS_MT_ORIENTATION, wide); in mt_complete_slot() 605 input_event(input, EV_ABS, ABS_MT_PRESSURE, s->p); in mt_complete_slot() 606 input_event(input, EV_ABS, ABS_MT_TOUCH_MAJOR, major); in mt_complete_slot() 607 input_event(input, EV_ABS, ABS_MT_TOUCH_MINOR, minor); in mt_complete_slot() 691 input_event(input, usage->type, usage->code, in mt_process_mt_event()
|
D | hid-xinmo.c | 37 input_event(field->hidinput->input, usage->type, in xinmo_event()
|
D | hid-input.c | 1075 input_event(input, usage->type, usage->code , hid_hat_to_axis[hat_dir].x); in hidinput_hid_event() 1076 input_event(input, usage->type, usage->code + 1, hid_hat_to_axis[hat_dir].y); in hidinput_hid_event() 1087 input_event(input, usage->type, (*quirks & HID_QUIRK_INVERT) ? BTN_TOOL_RUBBER : usage->code, 1); in hidinput_hid_event() 1090 input_event(input, usage->type, usage->code, 0); in hidinput_hid_event() 1091 input_event(input, usage->type, BTN_TOOL_RUBBER, 0); in hidinput_hid_event() 1098 input_event(input, EV_KEY, BTN_TOUCH, value > a + ((b - a) >> 3)); in hidinput_hid_event() 1121 input_event(input, EV_KEY, direction, 1); in hidinput_hid_event() 1123 input_event(input, EV_KEY, direction, 0); in hidinput_hid_event() 1164 input_event(input, EV_MSC, MSC_SCAN, usage->hid); in hidinput_hid_event() 1166 input_event(input, usage->type, usage->code, value); in hidinput_hid_event() [all …]
|
D | hid-ezkey.c | 60 input_event(input, usage->type, REL_WHEEL, -value); in ez_event()
|
D | hid-rmi.c | 340 input_event(hdata->input, EV_ABS, ABS_MT_POSITION_X, x); in rmi_f11_process_touch() 341 input_event(hdata->input, EV_ABS, ABS_MT_POSITION_Y, y); in rmi_f11_process_touch() 342 input_event(hdata->input, EV_ABS, ABS_MT_ORIENTATION, wide); in rmi_f11_process_touch() 343 input_event(hdata->input, EV_ABS, ABS_MT_PRESSURE, z); in rmi_f11_process_touch() 344 input_event(hdata->input, EV_ABS, ABS_MT_TOUCH_MAJOR, major); in rmi_f11_process_touch() 345 input_event(hdata->input, EV_ABS, ABS_MT_TOUCH_MINOR, minor); in rmi_f11_process_touch() 420 input_event(hdata->input, EV_KEY, BTN_LEFT + button++, in rmi_f30_input_event()
|
D | hid-microsoft.c | 219 input_event(input, usage->type, key, 1); in ms_event() 222 input_event(input, usage->type, last_key, 0); in ms_event()
|
D | hid-logitech-hidpp.c | 757 input_event(wd->input, EV_ABS, ABS_MT_POSITION_X, in wtp_touch_event() 759 input_event(wd->input, EV_ABS, ABS_MT_POSITION_Y, in wtp_touch_event() 762 input_event(wd->input, EV_ABS, ABS_MT_PRESSURE, in wtp_touch_event() 778 input_event(wd->input, EV_KEY, BTN_LEFT, raw->button); in wtp_send_raw_xy_event() 843 input_event(wd->input, EV_KEY, BTN_LEFT, in wtp_raw_event() 845 input_event(wd->input, EV_KEY, BTN_RIGHT, in wtp_raw_event()
|
D | hid-icade.c | 185 input_event(field->hidinput->input, usage->type, in icade_event()
|
D | hid-cypress.c | 93 input_event(input, usage->type, REL_HWHEEL, value); in cp_event()
|
D | hid-magicmouse.c | 273 input_event(input, EV_MSC, MSC_RAW, tdata[7]); in magicmouse_emit_touch() 275 input_event(input, EV_MSC, MSC_RAW, tdata[8]); in magicmouse_emit_touch()
|
D | hid-picolcd_core.c | 148 input_event(data->input_keys, EV_MSC, MSC_SCAN, raw_data[i]); in picolcd_raw_keypad() 171 input_event(data->input_keys, EV_MSC, MSC_SCAN, data->pressed_keys[j]); in picolcd_raw_keypad()
|
D | hid-prodikeys.c | 400 input_event(pm->input_ep82, EV_KEY, in pcmidi_handle_report4() 491 input_event(pm->input_ep82, EV_KEY, key, 1); in pcmidi_handle_report4()
|
D | hid-lg.c | 648 input_event(field->hidinput->input, usage->type, usage->code, in lg_event()
|
D | hid-lg4ff.c | 287 input_event(field->hidinput->input, usage->type, usage->code, new_value); in lg4ff_adjust_input_event()
|
D | wacom_wac.c | 633 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]); in wacom_intuos_inout() 1009 input_event(input, EV_MSC, MSC_SERIAL, wacom->serial[idx]); in wacom_intuos_irq() 1432 input_event(input, usage->type, usage->code, value); in wacom_wac_pen_event()
|
/linux-4.1.27/drivers/media/pci/ttpci/ |
D | av7110_ir.c | 140 input_event(ir->input_dev, EV_MSC, MSC_RAW, (addr << 16) | data); in av7110_emit_key() 141 input_event(ir->input_dev, EV_MSC, MSC_SCAN, data); in av7110_emit_key() 162 input_event(ir->input_dev, EV_KEY, ir->last_key, 0); in av7110_emit_key() 163 input_event(ir->input_dev, EV_KEY, keycode, 1); in av7110_emit_key() 166 input_event(ir->input_dev, EV_KEY, keycode, 2); in av7110_emit_key() 171 input_event(ir->input_dev, EV_KEY, keycode, 1); in av7110_emit_key()
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | chipone_icn8318.c | 137 input_event(data->input, EV_ABS, ABS_MT_POSITION_X, x); in icn8318_irq() 138 input_event(data->input, EV_ABS, ABS_MT_POSITION_Y, y); in icn8318_irq() 140 input_event(data->input, EV_ABS, ABS_MT_POSITION_X, y); in icn8318_irq() 141 input_event(data->input, EV_ABS, ABS_MT_POSITION_Y, x); in icn8318_irq()
|
D | max11801_ts.c | 141 input_event(data->input_dev, EV_KEY, BTN_TOUCH, 1); in max11801_ts_interrupt() 146 input_event(data->input_dev, EV_KEY, BTN_TOUCH, 0); in max11801_ts_interrupt()
|
D | penmount.c | 79 input_event(input, EV_ABS, ABS_MT_POSITION_X, pm->slots[i].x); in pm_mtevent() 80 input_event(input, EV_ABS, ABS_MT_POSITION_Y, pm->slots[i].y); in pm_mtevent()
|
D | elants_i2c.c | 789 input_event(input, EV_ABS, ABS_MT_POSITION_X, x); in elants_i2c_mt_event() 790 input_event(input, EV_ABS, ABS_MT_POSITION_Y, y); in elants_i2c_mt_event() 791 input_event(input, EV_ABS, ABS_MT_PRESSURE, p); in elants_i2c_mt_event() 792 input_event(input, EV_ABS, ABS_MT_TOUCH_MAJOR, w); in elants_i2c_mt_event()
|
D | pixcir_i2c_ts.c | 150 input_event(ts->input, EV_ABS, ABS_MT_POSITION_X, touch->x); in pixcir_ts_report() 151 input_event(ts->input, EV_ABS, ABS_MT_POSITION_Y, touch->y); in pixcir_ts_report()
|
/linux-4.1.27/drivers/input/tablet/ |
D | gtco.c | 681 input_event(inputdev, EV_MSC, MSC_SERIAL, val); in gtco_urb_callback() 714 input_event(inputdev, EV_MSC, MSC_SERIAL, val); in gtco_urb_callback() 720 input_event(inputdev, EV_MSC, MSC_SCAN, in gtco_urb_callback() 733 input_event(inputdev, EV_MSC, MSC_SCAN, device->buffer[1]); in gtco_urb_callback() 784 input_event(inputdev, EV_MSC, MSC_SERIAL, val); in gtco_urb_callback() 793 input_event(inputdev, EV_MSC, MSC_RAW, device->buffer[0]); in gtco_urb_callback()
|
D | hanwang.c | 217 input_event(input_dev, EV_MSC, MSC_SERIAL, in hanwang_parse_packet() 259 input_event(input_dev, EV_MSC, MSC_SERIAL, 0xffffffff); in hanwang_parse_packet()
|
/linux-4.1.27/drivers/input/misc/ |
D | sgi_btns.c | 78 input_event(input, EV_MSC, MSC_SCAN, i); in handle_buttons() 84 input_event(input, EV_MSC, MSC_SCAN, i); in handle_buttons()
|
D | cobalt_btns.c | 60 input_event(input, EV_MSC, MSC_SCAN, i); in handle_buttons() 66 input_event(input, EV_MSC, MSC_SCAN, i); in handle_buttons()
|
D | sirfsoc-onkey.c | 48 input_event(pwrcdrv->input, EV_KEY, KEY_POWER, 0); in sirfsoc_pwrc_report_event() 63 input_event(pwrcdrv->input, EV_KEY, KEY_POWER, 1); in sirfsoc_pwrc_isr()
|
D | atlas_btns.c | 60 input_event(input_dev, EV_MSC, MSC_SCAN, code); in acpi_atlas_button_handler()
|
D | uinput.c | 441 struct input_event ev; in uinput_inject_events() 457 input_event(udev->dev, ev.type, ev.code, ev.value); in uinput_inject_events() 487 struct input_event *event) in uinput_fetch_next_event() 507 struct input_event event; in uinput_events_to_user()
|
D | adxl34x.c | 263 input_event(ac->input, pdata->ev_type, pdata->ev_code_x, in adxl34x_service_ev_fifo() 265 input_event(ac->input, pdata->ev_type, pdata->ev_code_y, in adxl34x_service_ev_fifo() 267 input_event(ac->input, pdata->ev_type, pdata->ev_code_z, in adxl34x_service_ev_fifo()
|
D | ati_remote2.c | 336 input_event(idev, EV_REL, REL_X, (s8) data[1]); in ati_remote2_input_mouse() 337 input_event(idev, EV_REL, REL_Y, (s8) data[2]); in ati_remote2_input_mouse() 424 input_event(idev, EV_KEY, ar2->keycode[mode][index], data[1]); in ati_remote2_input_key()
|
D | keyspan_remote.c | 179 input_event(input, EV_MSC, MSC_SCAN, button); in keyspan_report_button()
|
/linux-4.1.27/drivers/input/keyboard/ |
D | maple_keyb.c | 105 input_event(dev, EV_MSC, MSC_SCAN, code); in dc_scan_kbd() 115 input_event(dev, EV_MSC, MSC_SCAN, code); in dc_scan_kbd() 127 input_event(dev, EV_MSC, MSC_SCAN, code); in dc_scan_kbd()
|
D | gpio_keys.c | 343 input_event(input, type, button->code, button->value); in gpio_keys_gpio_report_event() 345 input_event(input, type, button->code, !!state); in gpio_keys_gpio_report_event() 385 input_event(input, EV_KEY, bdata->button->code, 0); in gpio_keys_irq_timer() 407 input_event(input, EV_KEY, button->code, 1); in gpio_keys_irq_isr() 411 input_event(input, EV_KEY, button->code, 0); in gpio_keys_irq_isr()
|
D | w90p910_keypad.c | 66 input_event(input_dev, EV_MSC, MSC_SCAN, code); in w90p910_keypad_scan_matrix() 70 input_event(input_dev, EV_MSC, MSC_SCAN, code); in w90p910_keypad_scan_matrix()
|
D | pxa27x_keypad.c | 469 input_event(input_dev, EV_MSC, MSC_SCAN, code); in pxa27x_keypad_scan_matrix() 502 input_event(dev, EV_MSC, MSC_SCAN, code); in report_rotary_event() 505 input_event(dev, EV_MSC, MSC_SCAN, code); in report_rotary_event() 561 input_event(input_dev, EV_MSC, MSC_SCAN, code); in pxa27x_keypad_scan_direct()
|
D | sh_keysc.c | 149 input_event(priv->input, EV_KEY, k, 1); in sh_keysc_isr() 154 input_event(priv->input, EV_KEY, k, 0); in sh_keysc_isr()
|
D | jornada720_kbd.c | 83 input_event(input, EV_MSC, MSC_SCAN, scan_code); in jornada720_kbd_interrupt()
|
D | clps711x-keypad.c | 68 input_event(dev->input, EV_MSC, in clps711x_keypad_poll()
|
D | goldfish_events.c | 53 input_event(edev->input, type, code, value); in events_interrupt()
|
D | lm8333.c | 98 input_event(input, EV_MSC, MSC_SCAN, code); in lm8333_key_handler()
|
D | jornada680_kbd.c | 96 input_event(input_dev, in jornada_parse_kbd()
|
D | atkbd.c | 407 input_event(dev, EV_MSC, MSC_RAW, code); in atkbd_interrupt() 461 input_event(dev, EV_MSC, MSC_SCAN, code); in atkbd_interrupt() 511 input_event(dev, EV_KEY, keycode, value); in atkbd_interrupt() 515 input_event(dev, EV_MSC, MSC_SCAN, code); in atkbd_interrupt()
|
D | mcs_touchkey.c | 88 input_event(input, EV_MSC, MSC_SCAN, data->key_val); in mcs_touchkey_interrupt()
|
D | max7359_keypad.c | 124 input_event(input_dev, EV_MSC, MSC_SCAN, code); in max7359_interrupt()
|
D | nspire-keypad.c | 86 input_event(input, EV_MSC, MSC_SCAN, code); in nspire_keypad_irq()
|
D | mpr121_touchkey.c | 114 input_event(input, EV_MSC, MSC_SCAN, key_num); in mpr_touchkey_interrupt()
|
D | gpio_keys_polled.c | 60 input_event(input, type, button->code, state); in gpio_keys_polled_check_state()
|
D | locomokbd.c | 168 input_event(locomokbd->input, EV_PWR, in locomokbd_scankeyboard()
|
D | lpc32xx-keys.c | 98 input_event(input, EV_MSC, MSC_SCAN, scancode); in lpc32xx_mod_states()
|
D | tca8418_keypad.c | 182 input_event(input, EV_MSC, MSC_SCAN, code); in tca8418_read_keypad()
|
D | tca6416-keypad.c | 114 input_event(input, type, button->code, !!state); in tca6416_keys_scan()
|
D | twl4030_keypad.c | 244 input_event(input, EV_MSC, MSC_SCAN, code); in twl4030_kp_scan()
|
D | stmpe-keypad.c | 178 input_event(input, EV_MSC, MSC_SCAN, code); in stmpe_keypad_irq()
|
D | spear-keyboard.c | 90 input_event(input, EV_MSC, MSC_SCAN, val); in spear_kbd_interrupt()
|
D | nomadik-ske-keypad.c | 159 input_event(input, EV_MSC, MSC_SCAN, code); in ske_keypad_report()
|
D | tc3589x-keypad.c | 211 input_event(keypad->input, EV_MSC, MSC_SCAN, code); in tc3589x_keypad_irq()
|
D | omap4-keypad.c | 149 input_event(input_dev, EV_MSC, MSC_SCAN, code); in omap4_keypad_irq_thread_fn()
|
D | imx_keypad.c | 175 input_event(input_dev, EV_MSC, MSC_SCAN, code); in imx_keypad_fire_events()
|
D | matrix_keypad.c | 155 input_event(input_dev, EV_MSC, MSC_SCAN, code); in matrix_keypad_scan()
|
D | pmic8xxx-keypad.c | 248 input_event(kp->input, EV_MSC, MSC_SCAN, code); in __pmic8xxx_kp_scan_matrix()
|
D | samsung-keypad.c | 137 input_event(input_dev, EV_MSC, MSC_SCAN, val); in samsung_keypad_report()
|
D | tegra-kbc.c | 151 input_event(input, EV_MSC, MSC_SCAN, scancodes[i]); in tegra_kbc_report_pressed_keys()
|
D | lm8323.c | 287 input_event(lm->idev, EV_MSC, MSC_SCAN, key); in process_keys()
|
/linux-4.1.27/Documentation/input/ |
D | ff.txt | 127 struct input_event play; 128 struct input_event stop; 156 struct input_event ie; /* structure used to communicate with the driver */ 172 struct input_event ie; 200 struct input_event {
|
D | input.txt | 273 struct input_event {
|
/linux-4.1.27/include/linux/input/ |
D | mt.h | 90 input_event(dev, EV_ABS, ABS_MT_SLOT, slot); in input_mt_slot()
|
/linux-4.1.27/drivers/platform/x86/ |
D | intel_mid_powerbtn.c | 51 input_event(input, EV_KEY, KEY_POWER, in mfld_pb_isr()
|
D | fujitsu-tablet.c | 307 input_event(fujitsu.idev, EV_MSC, MSC_SCAN, i); in fujitsu_interrupt()
|
D | thinkpad_acpi.c | 2280 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode); in tpacpi_input_send_key() 2284 input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode); in tpacpi_input_send_key()
|
D | sony-laptop.c | 438 input_event(kp.dev, EV_MSC, MSC_SCAN, scancode); in sony_laptop_report_input_event()
|
/linux-4.1.27/drivers/media/usb/dvb-usb/ |
D | dvb-usb-remote.c | 136 input_event(d->input_dev, EV_KEY, event, 1); in legacy_dvb_usb_read_remote_control() 138 input_event(d->input_dev, EV_KEY, d->last_event, 0); in legacy_dvb_usb_read_remote_control()
|
/linux-4.1.27/drivers/media/rc/ |
D | ati_remote.c | 569 input_event(dev, EV_KEY, ati_remote_tbl[index].code, in ati_remote_input_report() 600 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 1); in ati_remote_input_report() 601 input_event(dev, EV_KEY, ati_remote_tbl[index].code, 0); in ati_remote_input_report()
|
D | rc-main.c | 609 input_event(dev->input_dev, EV_MSC, MSC_SCAN, dev->last_scancode); in rc_repeat() 645 input_event(dev->input_dev, EV_MSC, MSC_SCAN, scancode); in ir_do_keydown()
|
/linux-4.1.27/drivers/virtio/ |
D | virtio_input.c | 41 input_event(vi->idev, in virtinput_recv_events()
|
/linux-4.1.27/include/uapi/linux/ |
D | input.h | 24 struct input_event { struct
|
/linux-4.1.27/drivers/extcon/ |
D | extcon-max77693.c | 596 input_event(dock, EV_KEY, code, attached); in max77693_muic_dock_button_handler()
|
/linux-4.1.27/sound/soc/codecs/ |
D | cs42l52.c | 1027 input_event(cs42l52->beep, EV_SND, SND_TONE, time); in cs42l52_beep_set()
|
D | cs42l56.c | 1097 input_event(cs42l56->beep, EV_SND, SND_TONE, time); in cs42l56_beep_set()
|
D | wm8962.c | 3235 input_event(wm8962->beep, EV_SND, SND_TONE, time); in wm8962_beep_set()
|