Home
last modified time | relevance | path

Searched refs:wtoken (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DWindowSurfacePlacer.java269 final AppWindowToken wtoken = mService.mOpeningApps.valueAt(i); in handleAppTransitionReadyLocked() local
274 wtoken.clearAnimatingFlags(); in handleAppTransitionReadyLocked()
297 final AppWindowToken wtoken; in handleAppTransitionReadyLocked() local
299 wtoken = mService.mClosingApps.valueAt(i); in handleAppTransitionReadyLocked()
300 if (wallpaperTarget != null && wtoken.windowsCanBeWallpaperTarget()) { in handleAppTransitionReadyLocked()
304 wtoken = mService.mOpeningApps.valueAt(i - closingAppsCount); in handleAppTransitionReadyLocked()
305 if (wallpaperTarget != null && wtoken.windowsCanBeWallpaperTarget()) { in handleAppTransitionReadyLocked()
310 voiceInteraction |= wtoken.mVoiceInteraction; in handleAppTransitionReadyLocked()
312 if (wtoken.fillsParent()) { in handleAppTransitionReadyLocked()
313 final WindowState ws = wtoken.findMainWindow(); in handleAppTransitionReadyLocked()
[all …]
DAppWindowContainerController.java332 final AppWindowToken wtoken = mContainer; in setVisibility() local
341 if (!visible && wtoken.hiddenRequested) { in setVisibility()
343 if (!deferHidingClient && wtoken.mDeferHidingClient) { in setVisibility()
346 wtoken.mDeferHidingClient = deferHidingClient; in setVisibility()
347 wtoken.setClientHidden(true); in setVisibility()
354 + " hidden=" + wtoken.hidden + " hiddenRequested=" in setVisibility()
355 + wtoken.hiddenRequested + " Callers=" + Debug.getCallers(6)); in setVisibility()
357 mService.mOpeningApps.remove(wtoken); in setVisibility()
358 mService.mClosingApps.remove(wtoken); in setVisibility()
359 wtoken.waitingToShow = false; in setVisibility()
[all …]
DTaskSnapshotCache.java90 void onAppRemoved(AppWindowToken wtoken) { in onAppRemoved() argument
91 final Integer taskId = mAppTaskMap.get(wtoken); in onAppRemoved()
100 void onAppDied(AppWindowToken wtoken) { in onAppDied() argument
101 final Integer taskId = mAppTaskMap.get(wtoken); in onAppDied()
DTaskSnapshotController.java310 void onAppRemoved(AppWindowToken wtoken) { in onAppRemoved() argument
311 mCache.onAppRemoved(wtoken); in onAppRemoved()
317 void onAppDied(AppWindowToken wtoken) { in onAppDied() argument
318 mCache.onAppDied(wtoken); in onAppDied()
DTask.java145 void addChild(AppWindowToken wtoken, int position) { in addChild() argument
147 super.addChild(wtoken, position); in addChild()
751 final AppWindowToken wtoken = mChildren.get(i); in dump() local
752 pw.println(triplePrefix + "Activity #" + i + " " + wtoken); in dump()
753 wtoken.dump(pw, triplePrefix); in dump()
DDisplayContent.java451 final AppWindowToken wtoken = w.mAppToken;
454 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
455 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
456 + (wtoken.removed ? "removed" : "sendingToBottom"));
477 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
478 if (focusedApp.compareTo(wtoken) > 0) {
DTaskStack.java672 final AppWindowToken wtoken = mExitingAppTokens.get(appNdx); in removeChild() local
673 if (wtoken.getTask() == task) { in removeChild()
674 wtoken.mIsExiting = false; in removeChild()
DWindowManagerService.java2883 final AppWindowToken wtoken = mRoot.getAppWindowToken(token); in setWindowOpaqueLocked() local
2884 if (wtoken != null) { in setWindowOpaqueLocked()
2885 final WindowState win = wtoken.findMainWindow(); in setWindowOpaqueLocked()
2892 void updateTokenInPlaceLocked(AppWindowToken wtoken, int transit) { in updateTokenInPlaceLocked() argument
2894 if (wtoken.mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) { in updateTokenInPlaceLocked()
2895 wtoken.mAppAnimator.setNullAnimation(); in updateTokenInPlaceLocked()
2897 applyAnimationLocked(wtoken, null, transit, false, false); in updateTokenInPlaceLocked()
2981 final AppWindowToken wtoken = mRoot.getAppWindowToken(token); in containsShowWhenLockedWindow() local
2982 return wtoken != null && wtoken.containsShowWhenLockedWindow(); in containsShowWhenLockedWindow()
2992 final AppWindowToken wtoken = mRoot.getAppWindowToken(token); in containsDismissKeyguardWindow() local
[all …]
DWindowStateAnimator.java793 final AppWindowToken wtoken = mWin.mAppToken; in destroySurfaceLocked() local
794 if (wtoken != null) { in destroySurfaceLocked()
795 if (mWin == wtoken.startingWindow) { in destroySurfaceLocked()
796 wtoken.startingDisplayed = false; in destroySurfaceLocked()
/frameworks/base/core/java/android/service/quicksettings/
DIQSTileService.aidl26 void onClick(IBinder wtoken); in onClick() argument
DTileService.java361 public void onClick(IBinder wtoken) throws RemoteException { in onBind() argument
362 mHandler.obtainMessage(H.MSG_TILE_CLICKED, wtoken).sendToTarget(); in onBind()
/frameworks/base/core/java/android/app/
DActivityThread.java3598 IBinder wtoken = r.mPendingRemoveWindow.getDecorView().getWindowToken(); in cleanUpPendingRemoveWindows() local
3599 if (wtoken != null) { in cleanUpPendingRemoveWindows()
3600 WindowManagerGlobal.getInstance().closeAll(wtoken, in cleanUpPendingRemoveWindows()
4411 IBinder wtoken = v.getWindowToken(); in handleDestroyActivity() local
4426 if (wtoken != null && r.mPendingRemoveWindow == null) { in handleDestroyActivity()
4427 WindowManagerGlobal.getInstance().closeAll(wtoken, in handleDestroyActivity()