Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/
DUiModeManagerService.java123 private boolean mComputedNightMode; field in UiModeManagerService
845 pw.print(" mComputedNightMode="); pw.print(mComputedNightMode); in dumpImpl()
1059 boolean activateNightMode = mComputedNightMode; in updateConfigurationLocked()
1063 activateNightMode = lastState == null ? mComputedNightMode : lastState.isNight(); in updateConfigurationLocked()
1105 uiMode |= mComputedNightMode ? Configuration.UI_MODE_NIGHT_YES in getComputedUiModeConfiguration()
1107 uiMode &= mComputedNightMode ? ~Configuration.UI_MODE_NIGHT_NO in getComputedUiModeConfiguration()
1388 mComputedNightMode = activate; in updateComputedNightModeLocked()
1392 if (mOverrideNightModeOn && !mComputedNightMode) { in updateComputedNightModeLocked()
1393 mComputedNightMode = true; in updateComputedNightModeLocked()
1396 if (mOverrideNightModeOff && mComputedNightMode) { in updateComputedNightModeLocked()
[all …]