Searched refs:rootDisplayAreaId (Results 1 – 10 of 10) sorted by relevance
/frameworks/base/core/java/android/window/ |
D | DisplayAreaInfo.java | 57 public int rootDisplayAreaId = FEATURE_UNDEFINED; field in DisplayAreaInfo 70 rootDisplayAreaId = in.readInt(); in DisplayAreaInfo() 79 dest.writeInt(rootDisplayAreaId); in writeToParcel()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ImmersiveModeConfirmation.java | 169 void immersiveModeChangedLw(int rootDisplayAreaId, boolean isImmersiveMode, in immersiveModeChangedLw() argument 182 msg.arg1 = rootDisplayAreaId; in immersiveModeChangedLw() 434 private WindowManager createWindowManager(int rootDisplayAreaId) { in createWindowManager() argument 440 final Bundle options = getOptionsForWindowContext(rootDisplayAreaId); in createWindowManager() 441 mWindowContextRootDisplayAreaId = rootDisplayAreaId; in createWindowManager() 453 private Bundle getOptionsForWindowContext(int rootDisplayAreaId) { in getOptionsForWindowContext() argument 455 if (rootDisplayAreaId == FEATURE_UNDEFINED) { in getOptionsForWindowContext() 460 options.putInt(KEY_ROOT_DISPLAY_AREA_ID, rootDisplayAreaId); in getOptionsForWindowContext() 464 private void handleShow(int rootDisplayAreaId) { in handleShow() argument 466 if (rootDisplayAreaId == mWindowContextRootDisplayAreaId) { in handleShow() [all …]
|
D | DisplayArea.java | 688 info.rootDisplayAreaId = root == null ? getDisplayContent().mFeatureId : root.mFeatureId; in getDisplayAreaInfo()
|
D | DisplayPolicy.java | 2531 final int rootDisplayAreaId = root == null ? FEATURE_UNDEFINED : root.mFeatureId; 2533 mImmersiveModeConfirmation.immersiveModeChangedLw(rootDisplayAreaId, 2539 callStatusBarSafely(statusBar -> statusBar.immersiveModeChanged(rootDisplayAreaId,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ImmersiveModeConfirmation.java | 198 public void immersiveModeChanged(int rootDisplayAreaId, boolean isImmersiveMode) { in immersiveModeChanged() argument 214 msg.arg1 = rootDisplayAreaId; in immersiveModeChanged() 509 private WindowManager createWindowManager(int rootDisplayAreaId) { in createWindowManager() argument 515 final Bundle options = getOptionsForWindowContext(rootDisplayAreaId); in createWindowManager() 516 mWindowContextRootDisplayAreaId = rootDisplayAreaId; in createWindowManager() 528 private Bundle getOptionsForWindowContext(int rootDisplayAreaId) { in getOptionsForWindowContext() argument 530 if (rootDisplayAreaId == FEATURE_UNDEFINED) { in getOptionsForWindowContext() 535 options.putInt(KEY_ROOT_DISPLAY_AREA_ID, rootDisplayAreaId); in getOptionsForWindowContext() 539 private void handleShow(int rootDisplayAreaId) { in handleShow() argument 541 if (rootDisplayAreaId == mWindowContextRootDisplayAreaId) { in handleShow() [all …]
|
D | CommandQueue.java | 554 default void immersiveModeChanged(int rootDisplayAreaId, boolean isImmersiveMode) {} in immersiveModeChanged() argument 861 public void immersiveModeChanged(int rootDisplayAreaId, boolean isImmersiveMode) { in immersiveModeChanged() argument 864 args.argi1 = rootDisplayAreaId; in immersiveModeChanged() 1993 int rootDisplayAreaId = args.argi1; in handleMessage() local 1996 mCallbacks.get(i).immersiveModeChanged(rootDisplayAreaId, isImmersiveMode); in handleMessage()
|
/frameworks/base/services/core/java/com/android/server/statusbar/ |
D | StatusBarManagerInternal.java | 156 void immersiveModeChanged(int rootDisplayAreaId, boolean isImmersiveMode); in immersiveModeChanged() argument
|
D | StatusBarManagerService.java | 655 public void immersiveModeChanged(int rootDisplayAreaId, boolean isImmersiveMode) { 662 mBar.immersiveModeChanged(rootDisplayAreaId, isImmersiveMode);
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
D | IStatusBar.aidl | 78 void immersiveModeChanged(int rootDisplayAreaId, boolean isImmersiveMode); in immersiveModeChanged() argument
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | DisplayAreaTest.java | 603 assertThat(info.rootDisplayAreaId).isEqualTo(mDisplayContent.mFeatureId); in testGetDisplayAreaInfo() 614 assertThat(info2.rootDisplayAreaId).isEqualTo(root.mFeatureId); in testGetDisplayAreaInfo()
|