/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/injector/ |
D | FakeScreenInteractiveHelper.java | 24 private boolean mIsInteractive; field in FakeScreenInteractiveHelper 27 mIsInteractive = true; in FakeScreenInteractiveHelper() 31 if (interactive == mIsInteractive) { in setScreenInteractive() 35 mIsInteractive = interactive; in setScreenInteractive() 40 return mIsInteractive; in isInteractive()
|
/frameworks/base/services/core/java/com/android/server/location/injector/ |
D | SystemScreenInteractiveHelper.java | 37 private volatile boolean mIsInteractive; field in SystemScreenInteractiveHelper 72 if (interactive == mIsInteractive) { in onScreenInteractiveChanged() 76 mIsInteractive = interactive; in onScreenInteractiveChanged() 83 return mIsInteractive; in isInteractive()
|
/frameworks/base/services/core/java/com/android/server/power/ |
D | WakefulnessSessionObserver.java | 283 private boolean mIsInteractive = false; field in WakefulnessSessionObserver.WakefulnessSessionPowerGroup 325 if (mIsInteractive == isInteractive(wakefulness)) { in onWakefulnessChangeStarted() 329 mIsInteractive = isInteractive(wakefulness); in onWakefulnessChangeStarted() 330 if (mIsInteractive) { in onWakefulnessChangeStarted()
|
D | LowPowerStandbyController.java | 279 private boolean mIsInteractive; field in LowPowerStandbyController 392 mIsInteractive = mPowerManager.isInteractive(); in systemReady() 605 mForceActive || (mIsEnabled && !mIsInteractive && standbyTimeoutExpired in updateActiveLocked() 609 + mIsInteractive + ", standbyTimeoutExpired=" + standbyTimeoutExpired in updateActiveLocked() 630 mIsInteractive = false; in onNonInteractive() 649 mIsInteractive = true; in onInteractive() 1079 ipw.println(mIsInteractive); in dump() 1143 proto.write(LowPowerStandbyControllerDumpProto.IS_INTERACTIVE, mIsInteractive); in dumpProto()
|
/frameworks/base/services/core/java/com/android/server/power/batterysaver/ |
D | BatterySaverController.java | 109 private boolean mIsInteractive; field in BatterySaverController 396 return mIsInteractive; in isInteractive() 449 mIsInteractive = isInteractive; in handleBatterySaverStateChanged()
|
/frameworks/base/services/core/java/com/android/server/input/ |
D | KeyboardBacklightController.java | 103 private boolean mIsInteractive = true; field in KeyboardBacklightController 293 if (!mIsInteractive) { in handleUserActivity() 318 mIsInteractive = isInteractive; in handleInteractiveStateChange() 480 needToListenAmbientLightSensor &= mIsInteractive; in updateAmbientLightListener()
|
D | BatteryController.java | 99 private boolean mIsInteractive = true; field in BatteryController 206 if (!mIsInteractive || !anyOf(mDeviceMonitors, DeviceMonitor::requiresPolling)) { in updatePollingLocked() 425 mIsInteractive = interactive; in onInteractiveChanged() 447 + ", Interactive = " + mIsInteractive); in dump()
|
/frameworks/base/services/core/java/com/android/server/inputmethod/ |
D | InputMethodManagerService.java | 654 boolean mIsInteractive = true; field in InputMethodManagerService 1487 if (mIsInteractive && clientToBeReset != null) { in switchUserOnHandlerLocked() 2335 if (mIsInteractive) { in prepareClientSwitchLocked() 4632 proto.write(IS_INTERACTIVE, mIsInteractive); in dumpDebug() 5105 mIsInteractive = interactive; in handleSetInteractive() 5127 mCurClient.mClient.setInteractive(mIsInteractive, mInFullscreenMode); in handleSetInteractive() 5130 mCurClient.mClient.setActive(mIsInteractive, mInFullscreenMode); in handleSetInteractive() 6146 p.println(" mSystemReady=" + mSystemReady + " mInteractive=" + mIsInteractive); in dumpAsStringNoCheck()
|