Home
last modified time | relevance | path

Searched defs:AbsoluteAxisInfo (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/hardware/libhardware/modules/input/evdev/
H A DInputHub.h42 struct AbsoluteAxisInfo { struct
43 int32_t minValue = 0; // minimum value
44 int32_t maxValue = 0; // maximum value
45 int32_t flat = 0; // center flat position, e.g. flat == 8 means center is between -8 and 8
46 int32_t fuzz = 0; // error tolerance, e.g. fuzz == 4 means value is +/- 4 due to noise
47 int32_t resolution = 0; // resolution in units per mm or radians per mm
/aosp_15_r20/frameworks/native/cmds/evemu-record/
H A Devdev.rs110 pub struct AbsoluteAxisInfo { struct
111 pub value: i32,
112 pub minimum: i32,
113 pub maximum: i32,
114 pub fuzz: i32,
115 pub flat: i32,
116 pub resolution: i32,
261 pub fn absolute_axis_info(&self, axis: u16) -> nix::Result<AbsoluteAxisInfo> { in absolute_axis_info()