Home
last modified time | relevance | path

Searched refs:windowType (Results 1 – 24 of 24) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/wm/
DSystemWindows.java113 int windowType) { in addView() argument
119 pd.addView(view, attrs, windowType); in addView()
163 public void addRoot(int displayId, int windowType) { in addRoot() argument
169 pd.addRoot(windowType); in addRoot()
177 IWindow getWindow(int displayId, int windowType) { in getWindow() argument
182 return pd.getWindow(windowType); in getWindow()
210 public void addView(View view, WindowManager.LayoutParams attrs, int windowType) { in addView() argument
211 SysUiWindowManager wwm = addRoot(windowType); in addView()
225 mWmService.setShellRootAccessibilityWindow(mDisplayId, windowType, in addView()
229 + windowType, e); in addView()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DShellRoot.java49 ShellRoot(@NonNull IWindow client, @NonNull DisplayContent dc, final int windowType) { in ShellRoot() argument
51 mDeathRecipient = () -> mDisplayContent.removeShellRoot(windowType); in ShellRoot()
55 Slog.e(TAG, "Unable to add shell root for layer " + windowType + " on display " in ShellRoot()
61 dc.mWmService, client.asBinder(), windowType, true, dc, true, false); in ShellRoot()
91 if (mToken.windowType != TYPE_DOCK_DIVIDER) { in startAnimation()
114 if (mToken.windowType != TYPE_DOCK_DIVIDER) { in getWindowInfo()
125 windowInfo.type = mToken.windowType; in getWindowInfo()
DWindowToken.java79 final int windowType; field in WindowToken
238 windowType = type; in WindowToken()
252 Slog.e(TAG, "Unable to add window token with type " + windowType + " on " in WindowToken()
463 if (windowType == TYPE_DOCK_DIVIDER) { in assignLayer()
520 Rect getFixedRotationBarContentFrame(int windowType) { in getFixedRotationBarContentFrame() argument
522 ? mFixedRotationTransformState.mBarContentFrames.get(windowType) in getFixedRotationBarContentFrame()
750 pw.print(prefix); pw.print("windowType="); pw.print(windowType); in dump()
785 int layer = mWmService.mPolicy.getWindowLayerFromTypeLw(windowType, in canLayerAboveSystemBars()
793 return mWmService.mPolicy.getWindowLayerFromTypeLw(windowType, mOwnerCanManageAppTokens); in getWindowLayerFromType()
DEmbeddedWindowController.java150 WindowState hostWindowState, int ownerUid, int ownerPid, int windowType) { in EmbeddedWindow() argument
158 mWindowType = windowType; in EmbeddedWindow()
DAccessibilityController.java1491 private static boolean isReportedWindowType(int windowType) { in isReportedWindowType() argument
1492 return (windowType != WindowManager.LayoutParams.TYPE_WALLPAPER in isReportedWindowType()
1493 && windowType != WindowManager.LayoutParams.TYPE_BOOT_PROGRESS in isReportedWindowType()
1494 && windowType != WindowManager.LayoutParams.TYPE_DISPLAY_OVERLAY in isReportedWindowType()
1495 && windowType != WindowManager.LayoutParams.TYPE_DRAG in isReportedWindowType()
1496 && windowType != WindowManager.LayoutParams.TYPE_INPUT_CONSUMER in isReportedWindowType()
1497 && windowType != WindowManager.LayoutParams.TYPE_POINTER in isReportedWindowType()
1498 && windowType != TYPE_MAGNIFICATION_OVERLAY in isReportedWindowType()
1499 && windowType != WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA_OVERLAY in isReportedWindowType()
1500 && windowType != WindowManager.LayoutParams.TYPE_SECURE_SYSTEM_OVERLAY in isReportedWindowType()
[all …]
DWindowSurfaceController.java97 int flags, WindowStateAnimator animator, int windowType, int ownerUid) { in WindowSurfaceController() argument
107 mWindowType = windowType; in WindowSurfaceController()
118 .setMetadata(METADATA_WINDOW_TYPE, windowType) in WindowSurfaceController()
DBarController.java82 int statusBarManagerId, int windowType, int translucentWmFlag, int transparentFlag) { in BarController() argument
89 mWindowType = windowType; in BarController()
DDisplayContent.java1075 switch (token.windowType) { in addWindowToken()
1099 SurfaceControl addShellRoot(@NonNull IWindow client, int windowType) { in addShellRoot() argument
1100 ShellRoot root = mShellRoots.get(windowType); in addShellRoot()
1106 mShellRoots.remove(windowType); in addShellRoot()
1108 root = new ShellRoot(client, this, windowType); in addShellRoot()
1115 mShellRoots.put(windowType, root); in addShellRoot()
1120 void removeShellRoot(int windowType) { in removeShellRoot() argument
1122 ShellRoot root = mShellRoots.get(windowType); in removeShellRoot()
1127 mShellRoots.remove(windowType); in removeShellRoot()
4409 mWmService.mPolicy.getWindowLayerFromTypeLw(token1.windowType,
[all …]
DWindowStateAnimator.java455 WindowSurfaceController createSurfaceLocked(int windowType, int ownerUid) { in createSurfaceLocked() argument
463 windowType = SurfaceControl.WINDOW_TYPE_DONT_SCREENSHOT; in createSurfaceLocked()
517 height, format, flags, this, windowType, ownerUid); in createSurfaceLocked()
DWindowManagerService.java1361 static boolean excludeWindowTypeFromTapOutTask(int windowType) { in excludeWindowTypeFromTapOutTask() argument
1362 switch (windowType) { in excludeWindowTypeFromTapOutTask()
1500 if (token.windowType != TYPE_INPUT_METHOD) { in addWindow()
1506 if (token.windowType != TYPE_VOICE_INTERACTION) { in addWindow()
1512 if (token.windowType != TYPE_WALLPAPER) { in addWindow()
1518 if (token.windowType != TYPE_ACCESSIBILITY_OVERLAY) { in addWindow()
1528 if (addToastWindowRequiresToken && token.windowType != TYPE_TOAST) { in addWindow()
1534 if (token.windowType != TYPE_QS_DIALOG) { in addWindow()
3883 public SurfaceControl addShellRoot(int displayId, IWindow client, int windowType) { in addShellRoot() argument
3895 return dc.addShellRoot(client, windowType); in addShellRoot()
[all …]
/frameworks/base/core/java/android/service/wallpaper/
DIWallpaperService.aidl27 IBinder windowToken, int windowType, boolean isPreview, in attach() argument
DWallpaperService.java1354 int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding, in IWallpaperEngineWrapper() argument
1359 mWindowType = windowType; in IWallpaperEngineWrapper()
1566 int windowType, boolean isPreview, int reqWidth, int reqHeight, Rect padding, in attach() argument
1569 windowType, isPreview, reqWidth, reqHeight, padding, displayId); in attach()
/frameworks/base/core/tests/coretests/src/android/hardware/display/
DVirtualDisplayTest.java284 final int color, final int windowType, final int windowFlags) { in assertDisplayCanShowPresentation() argument
296 color, windowType, windowFlags); in assertDisplayCanShowPresentation()
350 int color, int windowType, int windowFlags) { in TestPresentation() argument
353 mWindowType = windowType; in TestPresentation()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DVolumeDialog.java31 void init(int windowType, Callback callback); in init() argument
/frameworks/base/core/java/android/app/
DPresentation.java195 final int windowType = in Presentation() local
204 w.setType(windowType); in Presentation()
/frameworks/base/core/java/android/inputmethodservice/
DSoftInputWindow.java136 int windowType, int gravity, boolean takesFocus) { in SoftInputWindow() argument
142 mWindowType = windowType; in SoftInputWindow()
/frameworks/base/core/java/android/view/
DIWindowManager.aidl161 SurfaceControl addShellRoot(int displayId, IWindow client, int windowType); in addShellRoot() argument
169 void setShellRootAccessibilityWindow(int displayId, int windowType, IWindow target); in setShellRootAccessibilityWindow() argument
DAccessibilityInteractionController.java827 final int windowType = mViewRootImpl.mOrigWindowType; in shouldBypassAdjustIsVisible() local
828 if (windowType == TYPE_INPUT_METHOD) { in shouldBypassAdjustIsVisible()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTestWindowManagerPolicy.java380 public boolean isTopLevelWindow(int windowType) {
/frameworks/base/services/core/java/com/android/server/policy/
DWindowManagerPolicy.java1396 public boolean isTopLevelWindow(int windowType); in isTopLevelWindow() argument
DPhoneWindowManager.java5340 public boolean isTopLevelWindow(int windowType) { in isTopLevelWindow() argument
5341 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW in isTopLevelWindow()
5342 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) { in isTopLevelWindow()
5343 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG); in isTopLevelWindow()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityWindowManager.java692 private int getTypeForWindowManagerWindowType(int windowType) { in getTypeForWindowManagerWindowType() argument
693 switch (windowType) { in getTypeForWindowManagerWindowType()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/volume/
DCarVolumeDialogImpl.java224 public void init(int windowType, Callback callback) { in init() argument
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp3978 int32_t windowType = metadata.getInt32(METADATA_WINDOW_TYPE, 0); in createLayer() local
3979 if (windowType == 441731) { in createLayer()