Home
last modified time | relevance | path

Searched refs:wallpaperTarget (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DWindowAnimator.java153 final WindowState wallpaperTarget = mService.mWallpaperTarget; in hideWallpapersLocked() local
157 if ((wallpaperTarget == w && lowerWallpaperTarget == null) || wallpaperTarget == null) { in hideWallpapersLocked()
174 + " target=" + wallpaperTarget + " lower=" + lowerWallpaperTarget in hideWallpapersLocked()
DWindowStateAnimator.java1034 final WindowState wallpaperTarget = mService.mWallpaperTarget; in computeShownFrameLocked() local
1035 if (mIsWallpaper && wallpaperTarget != null && mService.mAnimateWallpaperWithTarget) { in computeShownFrameLocked()
1036 final WindowStateAnimator wallpaperAnimator = wallpaperTarget.mWinAnimator; in computeShownFrameLocked()
1045 final AppWindowAnimator wpAppAnimator = wallpaperTarget.mAppToken == null ? in computeShownFrameLocked()
1046 null : wallpaperTarget.mAppToken.mAppAnimator; in computeShownFrameLocked()
DWindowManagerService.java1702 final boolean isWallpaperVisible(WindowState wallpaperTarget) { in isWallpaperVisible() argument
1703 if (DEBUG_WALLPAPER) Slog.v(TAG, "Wallpaper vis: target " + wallpaperTarget + ", obscured=" in isWallpaperVisible()
1704 + (wallpaperTarget != null ? Boolean.toString(wallpaperTarget.mObscured) : "??") in isWallpaperVisible()
1705 + " anim=" + ((wallpaperTarget != null && wallpaperTarget.mAppToken != null) in isWallpaperVisible()
1706 ? wallpaperTarget.mAppToken.mAppAnimator.animation : null) in isWallpaperVisible()
1709 return (wallpaperTarget != null in isWallpaperVisible()
1710 && (!wallpaperTarget.mObscured || (wallpaperTarget.mAppToken != null in isWallpaperVisible()
1711 && wallpaperTarget.mAppToken.mAppAnimator.animation != null))) in isWallpaperVisible()