/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
D | AssistHandleLikeHomeBehavior.java | 46 public void onDozingChanged(boolean isDozing) { 47 handleDozingChanged(isDozing); 103 mIsDozing = mStatusBarStateController.get().isDozing(); in onModeActivated() 124 private void handleDozingChanged(boolean isDozing) { in handleDozingChanged() argument 125 if (mIsDozing == isDozing) { in handleDozingChanged() 129 mIsDozing = isDozing; in handleDozingChanged()
|
D | PhoneStateMonitor.java | 130 if (isDozing()) { in getPhoneLockscreenState() 167 private boolean isDozing() { in isDozing() method in PhoneStateMonitor 168 return mStatusBarStateController.isDozing(); in isDozing()
|
D | AssistHandleReminderExpBehavior.java | 98 public void onDozingChanged(boolean isDozing) { 99 handleDozingChanged(isDozing); 219 mIsDozing = mStatusBarStateController.get().isDozing(); in onModeActivated() 309 private void handleDozingChanged(boolean isDozing) { in handleDozingChanged() argument 310 if (mIsDozing == isDozing) { in handleDozingChanged() 315 mIsDozing = isDozing; in handleDozingChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/charging/ |
D | WirelessChargingAnimation.java | 58 batteryLevel, Callback callback, boolean isDozing) { in WirelessChargingAnimation() argument 60 batteryLevel, callback, isDozing); in WirelessChargingAnimation() 68 @Nullable Looper looper, int batteryLevel, Callback callback, boolean isDozing) { in makeWirelessChargingAnimation() argument 69 return new WirelessChargingAnimation(context, looper, batteryLevel, callback, isDozing); in makeWirelessChargingAnimation() 104 Callback callback, boolean isDozing) { in WirelessChargingView() argument 106 mNextView = new WirelessChargingLayout(context, batteryLevel, isDozing); in WirelessChargingView()
|
D | WirelessChargingLayout.java | 47 public WirelessChargingLayout(Context context, int batteryLevel, boolean isDozing) { in WirelessChargingLayout() argument 49 init(context, null, batteryLevel, isDozing); in WirelessChargingLayout() 57 private void init(Context c, AttributeSet attrs, boolean isDozing) { in init() argument 61 private void init(Context context, AttributeSet attrs, int batteryLevel, boolean isDozing) { in init() argument 66 if (isDozing) { in init()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/assist/ |
D | AssistHandleLikeHomeBehaviorTest.java | 73 verify(mMockStatusBarStateController).isDozing(); in onModeActivated_beginsObserving() 86 when(mMockStatusBarStateController.isDozing()).thenReturn(false); in onModeActivated_showsHandlesWhenFullyAwake() 101 when(mMockStatusBarStateController.isDozing()).thenReturn(true); in onModeActivated_hidesHandlesWhenNotAwake() 116 when(mMockStatusBarStateController.isDozing()).thenReturn(true); in onModeActivated_hidesHandlesWhenDozing() 206 when(mMockStatusBarStateController.isDozing()).thenReturn(true); in onBothAwakeAndUnDoze_handlesShow() 263 when(mMockStatusBarStateController.isDozing()).thenReturn(false); in onSleepOrDoze_handlesHide() 309 when(mMockStatusBarStateController.isDozing()).thenReturn(false); in onHomeHandleHide_handlesHide() 338 when(mMockStatusBarStateController.isDozing()).thenReturn(false); in onHomeHandleUnhide_handlesShow()
|
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/ |
D | StatusBarStateController.java | 39 boolean isDozing(); in isDozing() method 88 default void onDozingChanged(boolean isDozing) {} in onDozingChanged() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | StatusBarStateControllerImpl.java | 164 public boolean isDozing() { in isDozing() method in StatusBarStateControllerImpl 179 public boolean setIsDozing(boolean isDozing) { in setIsDozing() argument 180 if (mIsDozing == isDozing) { in setIsDozing() 184 mIsDozing = isDozing; in setIsDozing() 188 rl.mListener.onDozingChanged(isDozing); in setIsDozing()
|
D | SysuiStatusBarStateController.java | 68 boolean setIsDozing(boolean isDozing); in setIsDozing() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | DozeScrimController.java | 144 public boolean isDozing() { in isDozing() method in DozeScrimController 215 public void onDozingChanged(boolean isDozing) { in onDozingChanged() argument 216 setDozing(isDozing); in onDozingChanged()
|
D | KeyguardLiftController.kt | 56 override fun onDozingChanged(isDozing: Boolean) { in onDozingChanged() 74 !statusBarStateController.isDozing in updateListeningState()
|
D | ShadeController.java | 99 boolean isDozing(); in isDozing() method
|
D | CollapsedStatusBarFragment.java | 232 if (mStatusBarStateController.isDozing() in adjustDisableFlags() 272 && !mStatusBarStateController.isDozing()) { in clockHiddenMode() 383 public void onDozingChanged(boolean isDozing) { in onDozingChanged() argument
|
D | NotificationGroupAlertTransferHelper.java | 120 public void onDozingChanged(boolean isDozing) { in onDozingChanged() argument 121 if (mIsDozing != isDozing) { in onDozingChanged() 127 mIsDozing = isDozing; in onDozingChanged()
|
D | StatusBarWindowView.java | 339 if (mService.isDozing()) { in dispatchKeyEvent() 399 if (mService.isDozing()) { in dispatchTouchEvent() 420 if (mService.isDozing() && !mService.isPulsing()) { in onInterceptTouchEvent() 428 && !mService.isDozing()) { in onInterceptTouchEvent() 447 if (mService.isDozing()) { in onTouchEvent()
|
D | HeadsUpManagerPhone.java | 247 public void onDozingChanged(boolean isDozing) { in onDozingChanged() argument 248 if (!isDozing) { in onDozingChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationFilter.java | 105 if (getShadeController().isDozing() && entry.shouldSuppressAmbient()) { in shouldFilterOut() 109 if (!getShadeController().isDozing() && entry.shouldSuppressNotificationList()) { in shouldFilterOut()
|
D | NotificationWakeUpCoordinator.kt | 260 && (!statusBarStateController.isDozing || shouldAnimateVisibility())) { in onStateChanged() 342 override fun onDozingChanged(isDozing: Boolean) { in onDozingChanged() 343 if (isDozing) { in onDozingChanged()
|
D | NotificationAlertingManager.java | 105 if (!mShadeController.get().isDozing()) { in showAlertingView()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationInterruptionStateProviderTest.java | 141 when(mStatusBarStateController.isDozing()).thenReturn(false); in ensureStateForHeadsUpWhenAwake() 155 when(mStatusBarStateController.isDozing()).thenReturn(true); in ensureStateForHeadsUpWhenDozing() 280 when(mStatusBarStateController.isDozing()).thenReturn(false); in testShouldHeadsUpWhenDozing_false_notDozing() 344 when(mStatusBarStateController.isDozing()).thenReturn(true); in testShouldHeadsUp_false_dozing()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | CollapsedStatusBarFragmentTest.java | 157 when(mStatusBarStateController.isDozing()).thenReturn(true); in testOnDozingChanged() 160 Mockito.verify(mStatusBarStateController).isDozing(); in testOnDozingChanged()
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/misc/ |
D | DozeTrigger.java | 98 public boolean isDozing() { in isDozing() method in DozeTrigger
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | AmbientState.java | 223 public boolean isDozing() { in isDozing() method in AmbientState 466 return isDozing() && !isPulsing(row.getEntry()); in isDozingAndNotPulsing()
|
/frameworks/base/tests/DozeTest/src/com/android/dreams/dozetest/ |
D | DozeTestDream.java | 132 Log.d(TAG, "Dream ended: isDozing=" + isDozing()); in onDreamingStopped()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationLogger.java | 397 public void onDozingChanged(boolean isDozing) { in onDozingChanged() argument 398 setDozing(isDozing); in onDozingChanged()
|