/frameworks/base/services/backup/java/com/android/server/backup/ |
H A D | KeyValueBackupJob.java | 61 final long fuzz; 67 fuzz = constants.getKeyValueBackupFuzzMilliseconds(); 72 delay = interval + new Random().nextInt((int) fuzz);
|
/frameworks/native/include/input/ |
H A D | InputDevice.h | 71 float fuzz; member in struct:android::InputDeviceInfo::MotionRange 95 float min, float max, float flat, float fuzz, float resolution);
|
/frameworks/native/libs/input/ |
H A D | InputDevice.cpp | 186 float flat, float fuzz, float resolution) { 187 MotionRange range = { axis, source, min, max, flat, fuzz, resolution }; 185 addMotionRange(int32_t axis, uint32_t source, float min, float max, float flat, float fuzz, float resolution) argument
|
/frameworks/native/services/vr/virtual_touchpad/ |
H A D | EvdevInjector.cpp | 132 int32_t fuzz, int32_t flat) { 135 abs_type, min, max, fuzz, flat); 152 uidev_.absfuzz[abs_type] = fuzz; 131 ConfigureAbs(uint16_t abs_type, int32_t min, int32_t max, int32_t fuzz, int32_t flat) argument
|
H A D | EvdevInjector.h | 82 int ConfigureAbs(uint16_t abs_type, int32_t min, int32_t max, int32_t fuzz,
|
/frameworks/base/core/java/android/view/ |
H A D | InputDevice.java | 743 float min, float max, float flat, float fuzz, float resolution) { 744 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); 851 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, argument 858 mFuzz = fuzz; 1031 description.append(" fuzz=").append(range.mFuzz); 742 addMotionRange(int axis, int source, float min, float max, float flat, float fuzz, float resolution) argument
|
/frameworks/base/core/jni/ |
H A D | android_view_InputDevice.cpp | 75 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution);
|
/frameworks/native/services/inputflinger/ |
H A D | EventHub.h | 85 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member in struct:android::RawAbsoluteAxisInfo 93 fuzz = 0;
|
H A D | InputReader.cpp | 1101 "min=%0.3f, max=%0.3f, flat=%0.3f, fuzz=%0.3f, resolution=%0.3f\n", 1102 name, range.source, range.min, range.max, range.flat, range.fuzz, 2056 dump += StringPrintf(INDENT4 "%s: min=%d, max=%d, flat=%d, fuzz=%d, resolution=%d\n", 2057 name, axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); 3148 x.fuzz, x.resolution); 3150 y.fuzz, y.resolution); 3152 x.fuzz, x.resolution); 3154 y.fuzz, y.resolution); 3681 mOrientedRanges.touchMajor.fuzz = 0; 3692 mOrientedRanges.toolMajor.fuzz [all...] |
H A D | InputReader.h | 1957 float fuzz; // normalized error tolerance member in struct:android::JoystickInputMapper::Axis 1969 float min, float max, float flat, float fuzz, float resolution) { 1980 this->fuzz = fuzz; 1966 initialize(const RawAbsoluteAxisInfo& rawAxisInfo, const AxisInfo& axisInfo, bool explicitlyMapped, float scale, float offset, float highScale, float highOffset, float min, float max, float flat, float fuzz, float resolution) argument
|
H A D | EventHub.cpp | 319 outAxisInfo->fuzz = info.fuzz;
|
/frameworks/base/services/core/java/com/android/server/ |
H A D | AlarmManagerService.java | 725 // minimum recurrence period or alarm futurity for us to be able to fuzz it 1608 // Add fuzz to make the alarm go off some time before the actual desired time. 1610 final int fuzz = fuzzForDuration(a.whenElapsed-nowElapsed); 1611 if (fuzz > 0) { 1615 final int delta = mRandom.nextInt(fuzz); 1620 Slog.d(TAG, "Applied fuzz: " + fuzz); 3397 // If the duration until the time is less than 15 minutes, the maximum fuzz 3401 // If duration is less than 1 1/2 hours, the maximum fuzz is 15 minutes, 3404 // Otherwise, we will fuzz b [all...] |
/frameworks/native/services/inputflinger/tests/ |
H A D | InputReader_test.cpp | 475 int32_t minValue, int32_t maxValue, int flat, int fuzz, int resolution = 0) { 483 info.fuzz = fuzz; 1622 int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) { 1630 ASSERT_NEAR(fuzz, range->fuzz, EPSILON) << "Axis: " << axis << " Source: " << source; 1621 assertMotionRange(const InputDeviceInfo& info, int32_t axis, uint32_t source, float min, float max, float flat, float fuzz) argument
|