Home | History | Annotate | Download | only in linux

Lines Matching refs:handler

1227  * @event: event handler for events sent _to_ the device, like EV_LED
1378 * @event: event handler. This method is being called by input core with
1383 * @match: called after comparing device's id with handler's id_table
1384 * to perform fine-grained matching between device and handler
1385 * @connect: called when attaching a handler to an input device
1386 * @disconnect: disconnects a handler from input device
1387 * @start: starts handler for given handle. This function is called by
1393 * @name: name of the handler, to be shown in /proc/bus/input/handlers
1396 * @h_list: list of input handles associated with the handler
1418 bool (*match)(struct input_handler *handler, struct input_dev *dev);
1419 int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id);
1434 * struct input_handle - links input device with an input handler
1435 * @private: handler-specific data
1438 * @name: name given to the handle by handler that created it
1440 * @handler: handler that works with the device through this handle
1442 * @h_node: used to put the handle on handler's list of handles from which
1453 struct input_handler *handler;