Home
last modified time | relevance | path

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

/frameworks/base/services/backup/java/com/android/server/backup/
DKeyValueBackupJob.java78 final long fuzz; in schedule() local
84 fuzz = constants.getKeyValueBackupFuzzMilliseconds(); in schedule()
89 delay = interval + new Random().nextInt((int) fuzz); in schedule()
/frameworks/native/include/input/
DInputDevice.h81 float fuzz; member
105 float min, float max, float flat, float fuzz, float resolution);
/frameworks/base/core/java/android/view/
DInputDevice.java746 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange() argument
747 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange()
854 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange() argument
861 mFuzz = fuzz; in MotionRange()
/frameworks/native/libs/input/
DInputDevice.cpp202 float flat, float fuzz, float resolution) { in addMotionRange() argument
203 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.cpp74 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution); in android_view_InputDevice_create()
/frameworks/native/services/inputflinger/
DEventHub.h67 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member
75 fuzz = 0; in clear()
DInputReader.cpp1051 name, range.source, range.min, range.max, range.flat, range.fuzz, in dump()
2003 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo()
3119 x.fuzz, x.resolution); in populateDeviceInfo()
3121 y.fuzz, y.resolution); in populateDeviceInfo()
3123 x.fuzz, x.resolution); in populateDeviceInfo()
3125 y.fuzz, y.resolution); in populateDeviceInfo()
3709 mOrientedRanges.touchMajor.fuzz = 0; in configureSurface()
3720 mOrientedRanges.toolMajor.fuzz = 0; in configureSurface()
3731 mOrientedRanges.size.fuzz = 0; in configureSurface()
3757 mOrientedRanges.pressure.fuzz = 0; in configureSurface()
[all …]
DInputReader.h1748 float fuzz; // normalized error tolerance member
1760 float min, float max, float flat, float fuzz, float resolution) { in initialize()
1771 this->fuzz = fuzz; in initialize()
DEventHub.cpp371 outAxisInfo->fuzz = info.fuzz; in getAbsoluteAxisInfo()
/frameworks/base/services/core/java/com/android/server/
DAlarmManagerService.java1927 final int fuzz = fuzzForDuration(a.whenElapsed-nowElapsed); in setImplLocked() local
1928 if (fuzz > 0) { in setImplLocked()
1932 final int delta = mRandom.nextInt(fuzz); in setImplLocked()
1937 Slog.d(TAG, "Applied fuzz: " + fuzz); in setImplLocked()
/frameworks/native/services/inputflinger/tests/
DInputReader_test.cpp417 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) { in addAbsoluteAxis() argument
425 info.fuzz = fuzz; in addAbsoluteAxis()
1851 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) { in assertMotionRange() argument
1859 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source; in assertMotionRange()