Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DImeInsetsSourceProvider.java233 InsetsControlTarget controlTarget = getControlTarget(); in updateClientVisibility() local
234 if (caller != controlTarget) { in updateClientVisibility()
242 if (controlTarget != null) { in updateClientVisibility()
243 controlTarget.setImeInputTargetRequestedVisibility(imeVisible); in updateClientVisibility()
249 controlTarget = mDisplayContent.getImeHostOrFallback(caller.getWindow()); in updateClientVisibility()
251 if (controlTarget != caller) { in updateClientVisibility()
252 controlTarget.setImeInputTargetRequestedVisibility(imeVisible); in updateClientVisibility()
490 final InsetsControlTarget controlTarget = getControlTarget(); in isScheduledAndReadyToShowIme() local
491 if (controlTarget == null) { in isScheduledAndReadyToShowIme()
495 if (controlTarget != mDisplayContent.getImeTarget(IME_TARGET_CONTROL)) { in isScheduledAndReadyToShowIme()
[all …]
DInsetsStateController.java384 final InsetsControlTarget controlTarget = mPendingControlChanged.valueAt(i); in notifyPendingInsetsControlChanged() local
385 controlTarget.notifyInsetsControlChanged(displayId); in notifyPendingInsetsControlChanged()
386 if (mControlTargetProvidersMap.containsKey(controlTarget)) { in notifyPendingInsetsControlChanged()
388 newControlTargets.add(controlTarget); in notifyPendingInsetsControlChanged()
425 final InsetsControlTarget controlTarget = mControlTargetProvidersMap.keyAt(i); in dump() local
427 pw.print(controlTarget); in dump()
434 if (controlTarget == provider.getFakeControlTarget()) { in dump()
437 pw.println(provider.getControl(controlTarget)); in dump()
DDisplayPolicy.java2259 final InsetsControlTarget controlTarget = provider != null
2262 if (controlTarget == null || controlTarget == getNotificationShade()) {
2267 if (controlTarget != null) {
2268 final WindowState win = controlTarget.getWindow();
2276 & controlTarget.getRequestedVisibleTypes();
2284 controlTarget.showInsets(Type.navigationBars(), false /* fromIme */,
2289 if (controlTarget.canShowTransient()) {
2293 controlTarget.showInsets(restorePositionTypes, false /* fromIme */,
2297 controlTarget.showInsets(Type.statusBars() | Type.navigationBars(),
DInsetsPolicy.java696 private void updateVisibility(@Nullable InsetsControlTarget controlTarget, in updateVisibility() argument
698 setVisible(controlTarget == null || controlTarget.isRequestedVisible(type)); in updateVisibility()
DTransition.java1596 final InsetsControlTarget controlTarget = sourceProvider.getControlTarget(); in updateImeForVisibleTransientLaunch() local
1597 if (imeInsetsLeash != null && controlTarget != null && controlTarget.getWindow() != null in updateImeForVisibleTransientLaunch()
1598 && !controlTarget.getWindow().mToken.isVisible()) { in updateImeForVisibleTransientLaunch()
DWindowManagerService.java8321 final InsetsControlTarget controlTarget = imeTarget.getImeControlTarget(); in showImePostLayout() local
8322 imeTarget = controlTarget.getWindow(); in showImePostLayout()
8328 .scheduleShowImePostLayout(controlTarget, statsToken); in showImePostLayout()
8521 final InsetsControlTarget controlTarget = dc.getImeTarget(IME_TARGET_CONTROL); in onToggleImeRequested() local
8522 if (controlTarget != null) { in onToggleImeRequested()
8523 final WindowState w = InsetsControlTarget.asWindowOrNull(controlTarget); in onToggleImeRequested()
8524 imeControlTargetName = w != null ? w.getName() : controlTarget.toString(); in onToggleImeRequested()