'\" t .\" Title: struct input_handle .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: January 2017 .\" Manual: Input Subsystem .\" Source: Kernel Hackers Manual 4.8.15 .\" Language: English .\" .TH "STRUCT INPUT_HANDLE" "9" "January 2017" "Kernel Hackers Manual 4\&.8\&." "Input Subsystem" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_input_handle \- links input device with an input handler .SH "SYNOPSIS" .sp .nf struct input_handle { void * private; int open; const char * name; struct input_dev * dev; struct input_handler * handler; struct list_head d_node; struct list_head h_node; }; .fi .SH "MEMBERS" .PP private .RS 4 handler\-specific data .RE .PP open .RS 4 counter showing whether the handle is \*(Aqopen\*(Aq, i\&.e\&. should deliver events from its device .RE .PP name .RS 4 name given to the handle by handler that created it .RE .PP dev .RS 4 input device the handle is attached to .RE .PP handler .RS 4 handler that works with the device through this handle .RE .PP d_node .RS 4 used to put the handle on device\*(Aqs list of attached handles .RE .PP h_node .RS 4 used to put the handle on handler\*(Aqs list of handles from which it gets events .RE .SH "COPYRIGHT" .br