Lines Matching refs:getAbsoluteAxisInfo
1796 status_t InputMapper::getAbsoluteAxisInfo(int32_t axis, RawAbsoluteAxisInfo* axisInfo) { in getAbsoluteAxisInfo() function in android::InputMapper
1797 return getEventHub()->getAbsoluteAxisInfo(getDeviceId(), axis, axisInfo); in getAbsoluteAxisInfo()
6040 getAbsoluteAxisInfo(ABS_X, &mRawPointerAxes.x); in configureRawPointerAxes()
6041 getAbsoluteAxisInfo(ABS_Y, &mRawPointerAxes.y); in configureRawPointerAxes()
6042 getAbsoluteAxisInfo(ABS_PRESSURE, &mRawPointerAxes.pressure); in configureRawPointerAxes()
6043 getAbsoluteAxisInfo(ABS_TOOL_WIDTH, &mRawPointerAxes.toolMajor); in configureRawPointerAxes()
6044 getAbsoluteAxisInfo(ABS_DISTANCE, &mRawPointerAxes.distance); in configureRawPointerAxes()
6045 getAbsoluteAxisInfo(ABS_TILT_X, &mRawPointerAxes.tiltX); in configureRawPointerAxes()
6046 getAbsoluteAxisInfo(ABS_TILT_Y, &mRawPointerAxes.tiltY); in configureRawPointerAxes()
6165 getAbsoluteAxisInfo(ABS_MT_POSITION_X, &mRawPointerAxes.x); in configureRawPointerAxes()
6166 getAbsoluteAxisInfo(ABS_MT_POSITION_Y, &mRawPointerAxes.y); in configureRawPointerAxes()
6167 getAbsoluteAxisInfo(ABS_MT_TOUCH_MAJOR, &mRawPointerAxes.touchMajor); in configureRawPointerAxes()
6168 getAbsoluteAxisInfo(ABS_MT_TOUCH_MINOR, &mRawPointerAxes.touchMinor); in configureRawPointerAxes()
6169 getAbsoluteAxisInfo(ABS_MT_WIDTH_MAJOR, &mRawPointerAxes.toolMajor); in configureRawPointerAxes()
6170 getAbsoluteAxisInfo(ABS_MT_WIDTH_MINOR, &mRawPointerAxes.toolMinor); in configureRawPointerAxes()
6171 getAbsoluteAxisInfo(ABS_MT_ORIENTATION, &mRawPointerAxes.orientation); in configureRawPointerAxes()
6172 getAbsoluteAxisInfo(ABS_MT_PRESSURE, &mRawPointerAxes.pressure); in configureRawPointerAxes()
6173 getAbsoluteAxisInfo(ABS_MT_DISTANCE, &mRawPointerAxes.distance); in configureRawPointerAxes()
6174 getAbsoluteAxisInfo(ABS_MT_TRACKING_ID, &mRawPointerAxes.trackingId); in configureRawPointerAxes()
6175 getAbsoluteAxisInfo(ABS_MT_SLOT, &mRawPointerAxes.slot); in configureRawPointerAxes()
6305 getAbsoluteAxisInfo(abs, &rawAxisInfo); in configure()