Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DTask.java31 Task(AppWindowToken wtoken, TaskStack stack, int userId) { in Task() argument
32 taskId = wtoken.groupId; in Task()
33 mAppTokens.add(wtoken); in Task()
42 void addAppToken(int addPos, AppWindowToken wtoken) { in addAppToken() argument
50 mAppTokens.add(addPos, wtoken); in addAppToken()
54 boolean removeAppToken(AppWindowToken wtoken) { in removeAppToken() argument
55 boolean removed = mAppTokens.remove(wtoken); in removeAppToken()
DWindowManagerService.java3519 WindowToken wtoken = mTokenMap.get(token); in findAppWindowToken() local
3520 if (wtoken == null) { in findAppWindowToken()
3523 return wtoken.appWindowToken; in findAppWindowToken()
3534 WindowToken wtoken = mTokenMap.get(token); in addWindowToken() local
3535 if (wtoken != null) { in addWindowToken()
3539 wtoken = new WindowToken(this, token, type, true); in addWindowToken()
3540 mTokenMap.put(token, wtoken); in addWindowToken()
3542 mWallpaperTokens.add(wtoken); in addWindowToken()
3557 WindowToken wtoken = mTokenMap.remove(token); in removeWindowToken() local
3558 if (wtoken != null) { in removeWindowToken()
[all …]
DDisplayContent.java329 AppWindowToken wtoken = tokens.get(tokenNdx); in checkForDeferredActions() local
330 if (wtoken.mDeferRemoval) { in checkForDeferredActions()
331 stack.mExitingAppTokens.remove(wtoken); in checkForDeferredActions()
332 wtoken.mDeferRemoval = false; in checkForDeferredActions()
333 mService.removeAppFromTaskLocked(wtoken); in checkForDeferredActions()
390 final AppWindowToken wtoken = tokens.get(tokenNdx); in dump() local
392 pw.print(' '); pw.print(wtoken); pw.println(":"); in dump()
393 wtoken.dump(pw, " "); in dump()
DWindowAnimator.java590 final AppWindowToken wtoken = tokens.get(tokenNdx); in testTokenMayBeDrawnLocked() local
591 AppWindowAnimator appAnimator = wtoken.mAppAnimator; in testTokenMayBeDrawnLocked()
592 final boolean allDrawn = wtoken.allDrawn; in testTokenMayBeDrawnLocked()
600 mService.unsetAppFreezingScreenLocked(wtoken, false, true); in testTokenMayBeDrawnLocked()
603 + wtoken + " numInteresting=" + wtoken.numInterestingWindows in testTokenMayBeDrawnLocked()
604 + " numDrawn=" + wtoken.numDrawnWindows); in testTokenMayBeDrawnLocked()
615 if (!mService.mOpeningApps.contains(wtoken)) { in testTokenMayBeDrawnLocked()
DWindowState.java795 AppWindowToken wtoken = mAppToken == null ? mService.mFocusedApp : mAppToken; in getStack() local
796 if (wtoken != null) { in getStack()
797 Task task = mService.mTaskIdToTask.get(wtoken.groupId); in getStack()
804 Slog.e(TAG, "getStack: " + this + " couldn't find taskId=" + wtoken.groupId in getStack()
/frameworks/base/core/java/android/app/
DActivityThread.java2999 IBinder wtoken = r.mPendingRemoveWindow.getWindowToken(); in cleanUpPendingRemoveWindows() local
3000 if (wtoken != null) { in cleanUpPendingRemoveWindows()
3001 WindowManagerGlobal.getInstance().closeAll(wtoken, in cleanUpPendingRemoveWindows()
3734 IBinder wtoken = v.getWindowToken(); in handleDestroyActivity() local
3745 if (wtoken != null && r.mPendingRemoveWindow == null) { in handleDestroyActivity()
3746 WindowManagerGlobal.getInstance().closeAll(wtoken, in handleDestroyActivity()