Home
last modified time | relevance | path

Searched refs:fuzz (Results 1 – 10 of 10) 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.java722 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange() argument
723 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange()
782 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange() argument
789 mFuzz = fuzz; in MotionRange()
/frameworks/native/libs/input/
DInputDevice.cpp179 float flat, float fuzz, float resolution) { in addMotionRange() argument
180 MotionRange range = { axis, source, min, max, flat, fuzz, resolution }; in addMotionRange()
/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.h87 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member
95 fuzz = 0; in clear()
DInputReader.cpp962 name, range.source, range.min, range.max, range.flat, range.fuzz, in dump()
1897 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo()
2784 x.fuzz, x.resolution); in populateDeviceInfo()
2786 y.fuzz, y.resolution); in populateDeviceInfo()
2788 x.fuzz, x.resolution); in populateDeviceInfo()
2790 y.fuzz, y.resolution); in populateDeviceInfo()
3283 mOrientedRanges.touchMajor.fuzz = 0; in configureSurface()
3294 mOrientedRanges.toolMajor.fuzz = 0; in configureSurface()
3305 mOrientedRanges.size.fuzz = 0; in configureSurface()
3329 mOrientedRanges.pressure.fuzz = 0; in configureSurface()
[all …]
DInputReader.h1946 float fuzz; // normalized error tolerance member
1958 float min, float max, float flat, float fuzz, float resolution) { in initialize()
1969 this->fuzz = fuzz; in initialize()
DEventHub.cpp302 outAxisInfo->fuzz = info.fuzz; in getAbsoluteAxisInfo()
/frameworks/base/services/core/java/com/android/server/
DAlarmManagerService.java980 final int fuzz = fuzzForDuration(a.whenElapsed-nowElapsed); in setImplLocked() local
981 if (fuzz > 0) { in setImplLocked()
985 final int delta = mRandom.nextInt(fuzz); in setImplLocked()
990 Slog.d(TAG, "Applied fuzz: " + fuzz); in setImplLocked()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp377 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) { in addAbsoluteAxis() argument
385 info.fuzz = fuzz; in addAbsoluteAxis()
1449 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) { in assertMotionRange() argument
1457 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source; in assertMotionRange()