Home
last modified time | relevance | path

Searched refs:key_press (Results 1 – 4 of 4) sorted by relevance

/linux-4.4.14/drivers/input/keyboard/
Dbcm-keypad.c107 int key_press; in bcm_kp_report_keys() local
119 key_press = state & BIT(bit_nr); in bcm_kp_report_keys()
121 key_press = pull_mode ? !key_press : key_press; in bcm_kp_report_keys()
125 input_report_key(kp->input_dev, keycode, key_press); in bcm_kp_report_keys()
/linux-4.4.14/include/sound/
Dseq_midi_emul.h85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan); member
/linux-4.4.14/sound/core/seq/
Dseq_midi_emul.c144 if (ops->key_press) in snd_midi_process_event()
145 ops->key_press(drv, ev->data.note.note, ev->data.note.velocity, chan); in snd_midi_process_event()
/linux-4.4.14/sound/drivers/opl3/
Dopl3_seq.c148 .key_press = snd_opl3_key_press,