Home | History | Annotate | Download | only in linux

Lines Matching defs:handler

1193  * @event: event handler for events sent _to_ the device, like EV_LED
1344 * @event: event handler. This method is being called by input core with
1349 * @match: called after comparing device's id with handler's id_table
1350 * to perform fine-grained matching between device and handler
1351 * @connect: called when attaching a handler to an input device
1352 * @disconnect: disconnects a handler from input device
1353 * @start: starts handler for given handle. This function is called by
1359 * @name: name of the handler, to be shown in /proc/bus/input/handlers
1362 * @h_list: list of input handles associated with the handler
1384 bool (*match)(struct input_handler *handler, struct input_dev *dev);
1385 int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id);
1400 * struct input_handle - links input device with an input handler
1401 * @private: handler-specific data
1404 * @name: name given to the handle by handler that created it
1406 * @handler: handler that works with the device through this handle
1408 * @h_node: used to put the handle on handler's list of handles from which
1419 struct input_handler *handler;