/frameworks/native/services/inputflinger/reader/mapper/ |
D | JoystickInputMapper.h | 52 float fuzz; // normalized error tolerance member 63 float highOffset, float min, float max, float flat, float fuzz, in initialize() 75 this->fuzz = fuzz; in initialize()
|
D | JoystickInputMapper.cpp | 46 info->addMotionRange(axisId, AINPUT_SOURCE_JOYSTICK, axis.min, axis.max, axis.flat, axis.fuzz, in addMotionRange() 54 axis.fuzz, axis.resolution); in addMotionRange() 97 axis.min, axis.max, axis.flat, axis.fuzz, axis.resolution); in dump() 104 axis.rawAxisInfo.flat, axis.rawAxisInfo.fuzz, in dump() 143 0.0f, 0.0f, 1.0f, rawFlat * scale, rawAxisInfo.fuzz * scale, in configure() 149 offset, -1.0f, 1.0f, rawFlat * scale, rawAxisInfo.fuzz * scale, in configure() 154 0.0f, 0.0f, 1.0f, rawFlat * scale, rawAxisInfo.fuzz * scale, in configure() 160 axis.filter = axis.fuzz ? axis.fuzz : axis.flat * 0.25f; in configure()
|
D | InputMapper.cpp | 86 axis.minValue, axis.maxValue, axis.flat, axis.fuzz, axis.resolution); in dumpRawAbsoluteAxisInfo()
|
D | TouchInputMapper.cpp | 225 x.fuzz, x.resolution); in populateDeviceInfo() 227 y.fuzz, y.resolution); in populateDeviceInfo() 229 x.fuzz, x.resolution); in populateDeviceInfo() 231 y.fuzz, y.resolution); in populateDeviceInfo() 819 mOrientedRanges.touchMajor.fuzz = 0; in configureSurface() 830 mOrientedRanges.toolMajor.fuzz = 0; in configureSurface() 841 mOrientedRanges.size.fuzz = 0; in configureSurface() 865 mOrientedRanges.pressure.fuzz = 0; in configureSurface() 887 mOrientedRanges.tilt.fuzz = 0; in configureSurface() 901 mOrientedRanges.orientation.fuzz = 0; in configureSurface() [all …]
|
/frameworks/base/services/backup/java/com/android/server/backup/ |
D | KeyValueBackupJob.java | 79 final long fuzz; in schedule() local 85 fuzz = constants.getKeyValueBackupFuzzMilliseconds(); in schedule() 90 delay = interval + new Random().nextInt((int) fuzz); in schedule()
|
/frameworks/av/media/libstagefright/codecs/amrnb/fuzzer/ |
D | README.md | 53 $ adb shell /data/fuzz/arm64/amrnb_dec_fuzzer/amrnb_dec_fuzzer CORPUS_DIR 57 $ $ANDROID_HOST_OUT/fuzz/x86_64/amrnb_dec_fuzzer/amrnb_dec_fuzzer CORPUS_DIR 62 * https://github.com/google/oss-fuzz
|
/frameworks/av/media/libstagefright/codecs/amrwb/fuzzer/ |
D | README.md | 52 $ adb shell /data/fuzz/arm64/amrwb_dec_fuzzer/amrwb_dec_fuzzer CORPUS_DIR 56 $ $ANDROID_HOST_OUT/fuzz/x86_64/amrwb_dec_fuzzer/amrwb_dec_fuzzer CORPUS_DIR 61 * https://github.com/google/oss-fuzz
|
/frameworks/native/libs/binder/fuzzer/ |
D | main.cpp | 56 void fuzz(uint8_t options, const std::vector<uint8_t>& input, const std::vector<uint8_t>& instructi… in fuzz() function 108 fuzz(options, input, instructions); in LLVMFuzzerTestOneInput()
|
D | Android.bp | 43 // This flag enables verbose output in the fuzz target, and is very useful
|
/frameworks/native/libs/gralloc/types/fuzzer/ |
D | main.cpp | 90 void fuzz(uint8_t options, uint8_t instruction, const std::vector<uint8_t>& input) { in fuzz() function 120 fuzz(options, instruction, input); in LLVMFuzzerTestOneInput()
|
D | Android.bp | 28 // This flag enables verbose output in the fuzz target, and is very useful
|
/frameworks/native/include/input/ |
D | InputDevice.h | 81 float fuzz; member 105 float min, float max, float flat, float fuzz, float resolution);
|
/frameworks/ml/nn/runtime/test/android_fuzzing/ |
D | Converter.h | 23 namespace android::nn::fuzz {
|
D | GenerateCorpus.cpp | 30 namespace android::nn::fuzz { namespace 170 using ::android::nn::fuzz::createCorpusEntry;
|
D | FuzzTest.cpp | 31 using ::android::nn::fuzz::convertToTestModel;
|
D | Converter.cpp | 24 namespace android::nn::fuzz { namespace
|
D | StaticAssert.cpp | 20 namespace android::nn::fuzz { namespace
|
/frameworks/base/core/java/android/view/ |
D | InputDevice.java | 762 float min, float max, float flat, float fuzz, float resolution) { in addMotionRange() argument 763 mMotionRanges.add(new MotionRange(axis, source, min, max, flat, fuzz, resolution)); in addMotionRange() 870 private MotionRange(int axis, int source, float min, float max, float flat, float fuzz, in MotionRange() argument 877 mFuzz = fuzz; in MotionRange()
|
/frameworks/native/libs/input/ |
D | InputDevice.cpp | 202 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/ |
D | EvdevInjector.cpp | 132 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()
|
D | EvdevInjector.h | 82 int ConfigureAbs(uint16_t abs_type, int32_t min, int32_t max, int32_t fuzz,
|
/frameworks/base/core/jni/ |
D | android_view_InputDevice.cpp | 74 range.source, range.min, range.max, range.flat, range.fuzz, range.resolution); in android_view_InputDevice_create()
|
/frameworks/native/services/inputflinger/reader/include/ |
D | EventHub.h | 66 int32_t fuzz; // error tolerance, eg. fuzz == 4 means value is +/- 4 due to noise member 74 fuzz = 0; in clear()
|
/frameworks/native/services/inputflinger/reader/ |
D | InputDevice.cpp | 121 name, range.source, range.min, range.max, range.flat, range.fuzz, in dump()
|
D | EventHub.cpp | 407 outAxisInfo->fuzz = info.fuzz; in getAbsoluteAxisInfo()
|