Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DInsetsStateController.java551 final InsetsControlTarget controlTarget = mPendingControlChanged.valueAt(i); in notifyPendingInsetsControlChanged() local
552 controlTarget.notifyInsetsControlChanged(); in notifyPendingInsetsControlChanged()
553 if (mControlTargetTypeMap.containsKey(controlTarget)) { in notifyPendingInsetsControlChanged()
555 newControlTargets.add(controlTarget); in notifyPendingInsetsControlChanged()
DInsetsPolicy.java468 private void updateVisibility(@Nullable InsetsControlTarget controlTarget, in updateVisibility() argument
470 setVisible(controlTarget == null || controlTarget.getRequestedVisibility(type)); in updateVisibility()
DDisplayPolicy.java2390 final InsetsControlTarget controlTarget = provider != null
2393 if (controlTarget == null || controlTarget == getNotificationShade()) {
2399 (controlTarget.getRequestedVisibility(ITYPE_NAVIGATION_BAR)
2401 | (controlTarget.getRequestedVisibility(ITYPE_STATUS_BAR)
2403 | (mExtraNavBarAlt != null && controlTarget.getRequestedVisibility(
2406 | (mClimateBarAlt != null && controlTarget.getRequestedVisibility(
2415 controlTarget.showInsets(Type.navigationBars(), false);
2419 if (controlTarget.canShowTransient()) {
2422 controlTarget.showInsets(restorePositionTypes, false);
2425 controlTarget.showInsets(Type.statusBars() | Type.navigationBars(), false);
DWindowManagerService.java7731 final InsetsControlTarget controlTarget = imeTarget.getImeControlTarget(); in showImePostLayout() local
7732 imeTarget = controlTarget.getWindow(); in showImePostLayout()
7738 .scheduleShowImePostLayout(controlTarget); in showImePostLayout()