Searched defs:forced (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLightBarTransitionsController.java89 public void appTransitionPending(boolean forced) { argument
90 if (mKeyguardMonitor.isKeyguardGoingAway() && !forced) {
106 public void appTransitionStarting(long startTime, long duration, boolean forced) { argument
107 if (mKeyguardMonitor.isKeyguardGoingAway() && !forced) {
H A DPhoneStatusBarPolicy.java718 public void appTransitionStarting(long startTime, long duration, boolean forced) { argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskWindowContainerController.java154 public void resize(boolean relayout, boolean forced) { argument
160 if (mContainer.setBounds(mContainer.getOverrideBounds(), forced) != BOUNDS_CHANGE_NONE
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java788 * @param forced Whether or not SCO audio connection should be forced: True to force SCO audio
792 public void setForceScoAudio(boolean forced) { argument
793 if (VDBG) log("setForceScoAudio " + String.valueOf(forced));
797 service.setForceScoAudio(forced);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java139 default void appTransitionPending(boolean forced) { } argument
141 default void appTransitionStarting(long startTime, long duration, boolean forced) { } argument
377 appTransitionPending(false /* forced */);
380 public void appTransitionPending(boolean forced) { argument
382 mHandler.obtainMessage(MSG_APP_TRANSITION_PENDING, forced ? 1 : 0, 0).sendToTarget();
393 appTransitionStarting(startTime, duration, false /* forced */);
396 public void appTransitionStarting(long startTime, long duration, boolean forced) { argument
398 mHandler.obtainMessage(MSG_APP_TRANSITION_STARTING, forced ? 1 : 0, 0,
/frameworks/base/services/usage/java/com/android/server/usage/
H A DAppStandbyController.java513 private void postNextParoleTimeout(long now, boolean forced) { argument
520 if (forced) {
522 // If parole is not set by the end of the window it will be forced
642 // If the bucket was forced by the user/developer, leave it alone.
643 // A usage event will be the only way to bring it out of this forced state
673 // Check if the app is within one of the timeouts for forced bucket elevation
1178 // If the bucket was forced, don't allow prediction to override
1184 // Check if the app is within one of the timeouts for forced bucket elevation

Completed in 451 milliseconds