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.java265 final AppWindowToken wtoken = mService.mOpeningApps.valueAt(i); in handleAppTransitionReadyLocked() local
270 wtoken.clearAnimatingFlags(); in handleAppTransitionReadyLocked()
293 final AppWindowToken wtoken; in handleAppTransitionReadyLocked() local
295 wtoken = mService.mClosingApps.valueAt(i); in handleAppTransitionReadyLocked()
296 if (wallpaperTarget != null && wtoken.windowsCanBeWallpaperTarget()) { in handleAppTransitionReadyLocked()
300 wtoken = mService.mOpeningApps.valueAt(i - closingAppsCount); in handleAppTransitionReadyLocked()
301 if (wallpaperTarget != null && wtoken.windowsCanBeWallpaperTarget()) { in handleAppTransitionReadyLocked()
306 voiceInteraction |= wtoken.mVoiceInteraction; in handleAppTransitionReadyLocked()
308 if (wtoken.fillsParent()) { in handleAppTransitionReadyLocked()
309 final WindowState ws = wtoken.findMainWindow(); in handleAppTransitionReadyLocked()
[all …]
DAppWindowContainerController.java366 final AppWindowToken wtoken = mContainer; in setVisibility() local
375 if (!visible && wtoken.hiddenRequested) { in setVisibility()
377 if (!deferHidingClient && wtoken.mDeferHidingClient) { in setVisibility()
380 wtoken.mDeferHidingClient = deferHidingClient; in setVisibility()
381 wtoken.setClientHidden(true); in setVisibility()
388 + " hidden=" + wtoken.hidden + " hiddenRequested=" in setVisibility()
389 + wtoken.hiddenRequested + " Callers=" + Debug.getCallers(6)); in setVisibility()
391 mService.mOpeningApps.remove(wtoken); in setVisibility()
392 mService.mClosingApps.remove(wtoken); in setVisibility()
393 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.java277 void onAppRemoved(AppWindowToken wtoken) { in onAppRemoved() argument
278 mCache.onAppRemoved(wtoken); in onAppRemoved()
284 void onAppDied(AppWindowToken wtoken) { in onAppDied() argument
285 mCache.onAppDied(wtoken); in onAppDied()
DTask.java142 void addChild(AppWindowToken wtoken, int position) { in addChild() argument
144 super.addChild(wtoken, position); in addChild()
725 final AppWindowToken wtoken = mChildren.get(i); in dump() local
726 pw.println(triplePrefix + "Activity #" + i + " " + wtoken); in dump()
727 wtoken.dump(pw, triplePrefix); in dump()
DDisplayContent.java440 final AppWindowToken wtoken = w.mAppToken;
443 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
444 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
445 + (wtoken.removed ? "removed" : "sendingToBottom"));
466 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
467 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.java2815 final AppWindowToken wtoken = mRoot.getAppWindowToken(token); in setWindowOpaqueLocked() local
2816 if (wtoken != null) { in setWindowOpaqueLocked()
2817 final WindowState win = wtoken.findMainWindow(); in setWindowOpaqueLocked()
2824 void updateTokenInPlaceLocked(AppWindowToken wtoken, int transit) { in updateTokenInPlaceLocked() argument
2826 if (wtoken.mAppAnimator.animation == AppWindowAnimator.sDummyAnimation) { in updateTokenInPlaceLocked()
2827 wtoken.mAppAnimator.setNullAnimation(); in updateTokenInPlaceLocked()
2829 applyAnimationLocked(wtoken, null, transit, false, false); in updateTokenInPlaceLocked()
2908 final AppWindowToken wtoken = mRoot.getAppWindowToken(token); in containsShowWhenLockedWindow() local
2909 return wtoken != null && wtoken.containsShowWhenLockedWindow(); in containsShowWhenLockedWindow()
2919 final AppWindowToken wtoken = mRoot.getAppWindowToken(token); in containsDismissKeyguardWindow() local
[all …]
DWindowStateAnimator.java788 final AppWindowToken wtoken = mWin.mAppToken; in destroySurfaceLocked() local
789 if (wtoken != null) { in destroySurfaceLocked()
790 if (mWin == wtoken.startingWindow) { in destroySurfaceLocked()
791 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.java3662 IBinder wtoken = r.mPendingRemoveWindow.getDecorView().getWindowToken(); in cleanUpPendingRemoveWindows() local
3663 if (wtoken != null) { in cleanUpPendingRemoveWindows()
3664 WindowManagerGlobal.getInstance().closeAll(wtoken, in cleanUpPendingRemoveWindows()
4466 IBinder wtoken = v.getWindowToken(); in handleDestroyActivity() local
4481 if (wtoken != null && r.mPendingRemoveWindow == null) { in handleDestroyActivity()
4482 WindowManagerGlobal.getInstance().closeAll(wtoken, in handleDestroyActivity()