Home
last modified time | relevance | path

Searched refs:fuzz (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/include/input/
DInputDevice.h71 float fuzz; member
95 float min, float max, float flat, float fuzz, float resolution);
/frameworks/base/core/java/android/view/
DInputDevice.java743 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange() argument
744 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange()
851 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange() argument
858 mFuzz = fuzz; in MotionRange()
/frameworks/native/libs/input/
DInputDevice.cpp186 float flat, float fuzz, float resolution) { in addMotionRange() argument
187 MotionRange range = { axis, source, min, max, flat, fuzz, resolution }; in addMotionRange()
/frameworks/native/services/vr/virtual_touchpad/
DEvdevInjector.cpp132 int32_t fuzz, int32_t flat) { in ConfigureAbs() argument
135 abs_type, min, max, fuzz, flat); in ConfigureAbs()
152 uidev_.absfuzz[abs_type] = fuzz; in ConfigureAbs()
DEvdevInjector.h82 int ConfigureAbs(uint16_t abs_type, int32_t min, int32_t max, int32_t fuzz,
/frameworks/base/core/jni/
Dandroid_view_InputDevice.cpp75 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution); in android_view_InputDevice_create()
/frameworks/native/services/inputflinger/
DEventHub.h86 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member
94 fuzz = 0; in clear()
DInputReader.cpp1099 name, range.source, range.min, range.max, range.flat, range.fuzz, in dump()
2050 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo()
3142 x.fuzz, x.resolution); in populateDeviceInfo()
3144 y.fuzz, y.resolution); in populateDeviceInfo()
3146 x.fuzz, x.resolution); in populateDeviceInfo()
3148 y.fuzz, y.resolution); in populateDeviceInfo()
3675 mOrientedRanges.touchMajor.fuzz = 0; in configureSurface()
3686 mOrientedRanges.toolMajor.fuzz = 0; in configureSurface()
3697 mOrientedRanges.size.fuzz = 0; in configureSurface()
3721 mOrientedRanges.pressure.fuzz = 0; in configureSurface()
[all …]
DInputReader.h1949 float fuzz; // normalized error tolerance member
1961 float min, float max, float flat, float fuzz, float resolution) { in initialize()
1972 this->fuzz = fuzz; in initialize()
DEventHub.cpp322 outAxisInfo->fuzz = info.fuzz; in getAbsoluteAxisInfo()
/frameworks/base/services/core/java/com/android/server/
DAlarmManagerService.java1211 final int fuzz = fuzzForDuration(a.whenElapsed-nowElapsed); in setImplLocked() local
1212 if (fuzz > 0) { in setImplLocked()
1216 final int delta = mRandom.nextInt(fuzz); in setImplLocked()
1221 Slog.d(TAG, "Applied fuzz: " + fuzz); in setImplLocked()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp475 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) { in addAbsoluteAxis() argument
483 info.fuzz = fuzz; in addAbsoluteAxis()
1622 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) { in assertMotionRange() argument
1630 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source; in assertMotionRange()