Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/vibrator/
DVibrationScaler.java64 private final SparseArray<ScaleLevel> mScaleLevels; field in VibrationScaler
74 mScaleLevels = new SparseArray<>(); in VibrationScaler()
75 mScaleLevels.put(SCALE_VERY_LOW, new ScaleLevel(SCALE_FACTOR_VERY_LOW)); in VibrationScaler()
76 mScaleLevels.put(SCALE_LOW, new ScaleLevel(SCALE_FACTOR_LOW)); in VibrationScaler()
77 mScaleLevels.put(SCALE_NONE, SCALE_LEVEL_NONE); in VibrationScaler()
78 mScaleLevels.put(SCALE_HIGH, new ScaleLevel(SCALE_FACTOR_HIGH)); in VibrationScaler()
79 mScaleLevels.put(SCALE_VERY_HIGH, new ScaleLevel(SCALE_FACTOR_VERY_HIGH)); in VibrationScaler()
146 ScaleLevel scaleLevel = mScaleLevels.get(getScaleLevel(usageHint)); in scale()
223 for (int i = 0; i < mScaleLevels.size(); i++) { in dump()
224 int scaleLevelKey = mScaleLevels.keyAt(i); in dump()
[all …]