• Home
  • Raw
  • Download

Lines Matching refs:value

35 	__s32 value;  member
182 int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
306 void (*event)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
309 bool (*filter)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
411 void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
412 …d input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
414 static inline void input_report_key(struct input_dev *dev, unsigned int code, int value) in input_report_key() argument
416 input_event(dev, EV_KEY, code, !!value); in input_report_key()
419 static inline void input_report_rel(struct input_dev *dev, unsigned int code, int value) in input_report_rel() argument
421 input_event(dev, EV_REL, code, value); in input_report_rel()
424 static inline void input_report_abs(struct input_dev *dev, unsigned int code, int value) in input_report_abs() argument
426 input_event(dev, EV_ABS, code, value); in input_report_abs()
429 static inline void input_report_ff_status(struct input_dev *dev, unsigned int code, int value) in input_report_ff_status() argument
431 input_event(dev, EV_FF_STATUS, code, value); in input_report_ff_status()
434 static inline void input_report_switch(struct input_dev *dev, unsigned int code, int value) in input_report_switch() argument
436 input_event(dev, EV_SW, code, !!value); in input_report_switch()
485 INPUT_GENERATE_ABS_ACCESSORS(val, value)
538 int (*playback)(struct input_dev *dev, int effect_id, int value);
558 int input_ff_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);