Searched refs:windowType (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperService.aidl26 IBinder windowToken, int windowType, boolean isPreview,
H A DWallpaperService.java963 int windowType, boolean isPreview, int reqWidth, int reqHeight) {
967 mWindowType = windowType;
1104 int windowType, boolean isPreview, int reqWidth, int reqHeight) {
1106 windowType, isPreview, reqWidth, reqHeight);
961 IWallpaperEngineWrapper(WallpaperService context, IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight) argument
1103 attach(IWallpaperConnection conn, IBinder windowToken, int windowType, boolean isPreview, int reqWidth, int reqHeight) argument
/frameworks/base/services/java/com/android/server/wm/
H A DWindowToken.java37 final int windowType; field in class:WindowToken
76 windowType = type;
82 pw.print(prefix); pw.print("windowType="); pw.print(windowType);
H A DFakeWindowImpl.java43 String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags,
63 mWindowLayer = getLayerLw(windowType);
67 mWindowHandle.layoutParamsType = windowType;
107 private int getLayerLw(int windowType) { argument
108 return mService.mPolicy.windowTypeToLayerLw(windowType)
41 FakeWindowImpl(WindowManagerService service, Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
H A DDisplayMagnifier.java220 final int windowType = windowState.mAttrs.type;
221 if (!policy.isTopLevelWindow(windowType) && windowState.mAttachedWindow != null
222 && !policy.canMagnifyWindow(windowType)) {
H A DWindowManagerService.java2205 if (token.windowType != TYPE_INPUT_METHOD) {
2211 if (token.windowType != TYPE_WALLPAPER) {
2217 if (token.windowType != TYPE_DREAM) {
3382 } else if (wtoken.windowType == TYPE_WALLPAPER) {
9345 if (token.windowType == TYPE_WALLPAPER) {
10139 String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags,
10143 name, windowType,
10137 addFakeWindow(Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java404 String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags,
1174 * @param windowType The window type.
1177 public boolean canMagnifyWindow(int windowType); argument
1185 * @param windowType The window type.
1188 public boolean isTopLevelWindow(int windowType); argument
402 addFakeWindow(Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
/frameworks/base/core/tests/coretests/src/android/hardware/display/
H A DVirtualDisplayTest.java283 final int color, final int windowType, final int windowFlags) {
295 color, windowType, windowFlags);
349 int color, int windowType, int windowFlags) {
352 mWindowType = windowType;
282 assertDisplayCanShowPresentation(String message, final Display display, final int color, final int windowType, final int windowFlags) argument
348 TestPresentation(Context context, Display display, int color, int windowType, int windowFlags) argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java5246 public boolean canMagnifyWindow(int windowType) { argument
5247 switch (windowType) {
5264 public boolean isTopLevelWindow(int windowType) { argument
5265 if (windowType >= WindowManager.LayoutParams.FIRST_SUB_WINDOW
5266 && windowType <= WindowManager.LayoutParams.LAST_SUB_WINDOW) {
5267 return (windowType == WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG);

Completed in 1929 milliseconds