Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
DPowerUI.java88 private EnhancedEstimates mEnhancedEstimates; field in PowerUI
126 mEnhancedEstimates = Dependency.get(EnhancedEstimates.class); in start()
332 final boolean hybridEnabled = mEnhancedEstimates.isHybridNotificationEnabled(); in maybeShowBatteryWarningV2()
349 mEnhancedEstimates.getSevereWarningThreshold(), in maybeShowBatteryWarningV2()
350 mEnhancedEstimates.getLowWarningThreshold(), estimate.isBasedOnUsage(), in maybeShowBatteryWarningV2()
351 mEnhancedEstimates.getLowWarningEnabled()); in maybeShowBatteryWarningV2()
375 final Estimate estimate = mEnhancedEstimates.getEstimate(); in refreshEstimateIfNeeded()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/
DPowerUITest.java85 private EnhancedEstimates mEnhancedEstimates; field in PowerUITest
99 mEnhancedEstimates = mDependency.injectMockDependency(EnhancedEstimates.class); in setup()
531 when(mEnhancedEstimates.isHybridNotificationEnabled()).thenReturn(true); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
532 when(mEnhancedEstimates.getLowWarningThreshold()).thenReturn(PowerUI.THREE_HOURS_IN_MILLIS); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
533 when(mEnhancedEstimates.getSevereWarningThreshold()).thenReturn(ONE_HOUR_MILLIS); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
534 when(mEnhancedEstimates.getEstimate()).thenReturn(estimate); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
548 when(mEnhancedEstimates.getEstimate()).thenReturn(estimate); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
558 when(mEnhancedEstimates.getEstimate()).thenReturn(estimate); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java265 @Inject Lazy<EnhancedEstimates> mEnhancedEstimates; field in Dependency
447 mProviders.put(EnhancedEstimates.class, mEnhancedEstimates::get); in start()