Searched refs:ScaleLevel (Results 1 – 2 of 2) sorted by relevance
115 private final SparseArray<ScaleLevel> mScaleLevels;322 private static final class ScaleLevel { class in VibratorService326 public ScaleLevel(float gamma) { in ScaleLevel() method in VibratorService.ScaleLevel330 public ScaleLevel(float gamma, int maxAmplitude) { in ScaleLevel() method in VibratorService.ScaleLevel398 new ScaleLevel(SCALE_VERY_LOW_GAMMA, SCALE_VERY_LOW_MAX_AMPLITUDE)); in VibratorService()399 mScaleLevels.put(SCALE_LOW, new ScaleLevel(SCALE_LOW_GAMMA, SCALE_LOW_MAX_AMPLITUDE)); in VibratorService()400 mScaleLevels.put(SCALE_NONE, new ScaleLevel(SCALE_NONE_GAMMA)); in VibratorService()401 mScaleLevels.put(SCALE_HIGH, new ScaleLevel(SCALE_HIGH_GAMMA)); in VibratorService()402 mScaleLevels.put(SCALE_VERY_HIGH, new ScaleLevel(SCALE_VERY_HIGH_GAMMA)); in VibratorService()845 final ScaleLevel scale = mScaleLevels.get(intensity - defaultIntensity); in applyVibrationIntensityScalingLocked()
18479 Lcom/android/server/VibratorService$ScaleLevel;