Home
last modified time | relevance | path

Searched refs:WindowManagerService (Results 1 – 25 of 35) sorted by relevance

12

/frameworks/base/services/core/java/com/android/server/wm/
DDragState.java21 import com.android.server.wm.WindowManagerService.DragInputEventReceiver;
22 import com.android.server.wm.WindowManagerService.H;
46 final WindowManagerService mService;
67 DragState(WindowManagerService service, IBinder token, SurfaceControl surface, in DragState()
95 …if (WindowManagerService.DEBUG_DRAG) Slog.d(WindowManagerService.TAG, "registering drag input chan… in register()
97 Slog.e(WindowManagerService.TAG, "Duplicate register of drag input channel"); in register()
109 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS; in register()
119 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS; in register()
142 if (WindowManagerService.DEBUG_ORIENTATION) { in register()
143 Slog.d(WindowManagerService.TAG, "Pausing rotation during drag"); in register()
[all …]
DSession.java24 import com.android.server.wm.WindowManagerService.H;
57 final WindowManagerService mService;
69 public Session(WindowManagerService service, IWindowSessionCallback callback, in Session()
134 Slog.wtf(WindowManagerService.TAG, "Window Session Crash", e); in onTransact()
195 if (false) Slog.d(WindowManagerService.TAG, ">>>>>> ENTERED relayout from " in relayout()
201 if (false) Slog.d(WindowManagerService.TAG, "<<<<<< EXITING relayout to " in relayout()
229 if (WindowManagerService.localLOGV) Slog.v( in finishDrawing()
230 WindowManagerService.TAG, "IWindow finishDrawing called for " + window); in finishDrawing()
270 if (WindowManagerService.DEBUG_DRAG) { in performDrag()
271 Slog.d(WindowManagerService.TAG, "perform drag: win=" + window + " data=" + data); in performDrag()
[all …]
DInputMonitor.java36 private final WindowManagerService mService;
63 public InputMonitor(WindowManagerService service) { in InputMonitor()
80 Slog.i(WindowManagerService.TAG, "WINDOW DIED " + windowState); in notifyInputChannelBroken()
109 Slog.i(WindowManagerService.TAG, "Input event dispatching timed out " in notifyANR()
119 Slog.i(WindowManagerService.TAG, "Input event dispatching timed out " in notifyANR()
123 Slog.i(WindowManagerService.TAG, "Input event dispatching timed out " in notifyANR()
235 if (false) Slog.d(WindowManagerService.TAG, ">>>>>> ENTERED updateInputWindowsLw"); in updateInputWindowsLw()
250 if (WindowManagerService.DEBUG_DRAG) { in updateInputWindowsLw()
251 Log.d(WindowManagerService.TAG, "Inserting drag window"); in updateInputWindowsLw()
257 Slog.w(WindowManagerService.TAG, "Drag is in progress but there is no " in updateInputWindowsLw()
[all …]
DWatermark.java56 Log.i(WindowManagerService.TAG, "*********************** WATERMARK"); in Watermark()
58 Log.i(WindowManagerService.TAG, " TOKEN #" + i + ": " + tokens[i]); in Watermark()
81 Log.i(WindowManagerService.TAG, "Final text: " + mText); in Watermark()
84 int fontSize = WindowManagerService.getPropertyInt(tokens, 1, in Watermark()
95 mDeltaX = WindowManagerService.getPropertyInt(tokens, 2, in Watermark()
97 mDeltaY = WindowManagerService.getPropertyInt(tokens, 3, in Watermark()
99 int shadowColor = WindowManagerService.getPropertyInt(tokens, 4, in Watermark()
101 int color = WindowManagerService.getPropertyInt(tokens, 5, in Watermark()
103 int shadowRadius = WindowManagerService.getPropertyInt(tokens, 6, in Watermark()
105 int shadowDx = WindowManagerService.getPropertyInt(tokens, 8, in Watermark()
[all …]
DAppWindowAnimator.java36 final WindowManagerService mService;
92 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting animation in " + mAppToken in setAnimation()
100 anim.restrictDuration(WindowManagerService.MAX_ANIMATION_DURATION); in setAnimation()
105 adj = WindowManagerService.TYPE_LAYER_OFFSET; in setAnimation()
107 adj = -WindowManagerService.TYPE_LAYER_OFFSET; in setAnimation()
125 if (WindowManagerService.localLOGV) Slog.v(TAG, "Setting dummy animation in " + mAppToken in setDummyAnimation()
164 if (WindowManagerService.DEBUG_LAYERS) Slog.v(TAG, "Updating layer " + w + ": " in updateLayers()
190 if (WindowManagerService.SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail, in stepThumbnailAnimation()
194 if (WindowManagerService.SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail, in stepThumbnailAnimation()
207 thumbnail.setLayer(thumbnailLayer + WindowManagerService.WINDOW_LAYER_MULTIPLIER in stepThumbnailAnimation()
[all …]
DAppWindowToken.java22 import com.android.server.wm.WindowManagerService.H;
115 AppWindowToken(WindowManagerService _service, IApplicationToken _token, in AppWindowToken()
136 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG, in sendAppVisibilityToClients()
154 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG, in updateReportedVisibilityLocked()
165 if (WindowManagerService.DEBUG_VISIBILITY) { in updateReportedVisibilityLocked()
166 Slog.v(WindowManagerService.TAG, "Win " + win + ": isDrawn=" in updateReportedVisibilityLocked()
170 … Slog.v(WindowManagerService.TAG, "Not displayed: s=" + win.mWinAnimator.mSurfaceControl in updateReportedVisibilityLocked()
203 …if (WindowManagerService.DEBUG_VISIBILITY) Slog.v(WindowManagerService.TAG, "VIS " + this + ": int… in updateReportedVisibilityLocked()
214 if (WindowManagerService.DEBUG_VISIBILITY) Slog.v( in updateReportedVisibilityLocked()
215 WindowManagerService.TAG, "Visibility changed in " + this in updateReportedVisibilityLocked()
[all …]
DWindowAnimator.java25 import static com.android.server.wm.WindowManagerService.DEBUG_KEYGUARD;
26 import static com.android.server.wm.WindowManagerService.LayoutFields.SET_UPDATE_ROTATION;
27 import static com.android.server.wm.WindowManagerService.LayoutFields.SET_WALLPAPER_MAY_CHANGE;
28 import static com.android.server.wm.WindowManagerService.LayoutFields.SET_FORCE_HIDING_CHANGED;
29 import static com.android.server.wm.WindowManagerService.LayoutFields.SET_ORIENTATION_CHANGE_COMPLE…
30 import static com.android.server.wm.WindowManagerService.LayoutFields.SET_WALLPAPER_ACTION_PENDING;
45 import com.android.server.wm.WindowManagerService.LayoutFields;
60 final WindowManagerService mService;
116 WindowAnimator(final WindowManagerService service) { in WindowAnimator()
172 if (WindowManagerService.DEBUG_WALLPAPER_LIGHT && !token.hidden) Slog.d(TAG, in hideWallpapersLocked()
[all …]
DFakeWindowImpl.java30 final WindowManagerService mService;
39 public FakeWindowImpl(WindowManagerService service, in FakeWindowImpl()
56 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS; in FakeWindowImpl()
66 WindowManagerService.DEFAULT_INPUT_DISPATCHING_TIMEOUT_NANOS; in FakeWindowImpl()
106 * WindowManagerService.TYPE_LAYER_MULTIPLIER in getLayerLw()
107 + WindowManagerService.TYPE_LAYER_OFFSET; in getLayerLw()
DWindowStateAnimator.java21 import static com.android.server.wm.WindowManagerService.DEBUG_ANIM;
22 import static com.android.server.wm.WindowManagerService.DEBUG_LAYERS;
23 import static com.android.server.wm.WindowManagerService.DEBUG_ORIENTATION;
24 import static com.android.server.wm.WindowManagerService.DEBUG_STARTING_WINDOW;
25 import static com.android.server.wm.WindowManagerService.DEBUG_SURFACE_TRACE;
26 import static com.android.server.wm.WindowManagerService.SHOW_TRANSACTIONS;
27 import static com.android.server.wm.WindowManagerService.DEBUG_VISIBILITY;
28 import static com.android.server.wm.WindowManagerService.SHOW_LIGHT_TRANSACTIONS;
29 import static com.android.server.wm.WindowManagerService.SHOW_SURFACE_ALLOC;
30 import static com.android.server.wm.WindowManagerService.localLOGV;
[all …]
DBlackFrame.java47 if (WindowManagerService.DEBUG_SURFACE_TRACE) { in BlackSurface()
60 if (WindowManagerService.SHOW_TRANSACTIONS || in BlackSurface()
61 WindowManagerService.SHOW_SURFACE_ALLOC) Slog.i(WindowManagerService.TAG, in BlackSurface()
79 Slog.i(WindowManagerService.TAG, "Black Surface @ (" + left + "," + top + "): (" in setMatrix()
152 if (WindowManagerService.SHOW_TRANSACTIONS || in kill()
153 WindowManagerService.SHOW_SURFACE_ALLOC) Slog.i( in kill()
154 WindowManagerService.TAG, in kill()
DWindowToken.java32 final WindowManagerService service;
74 WindowToken(WindowManagerService _service, IBinder _token, int type, boolean _explicit) { in WindowToken()
84 if (WindowManagerService.DEBUG_WINDOW_MOVEMENT) Slog.w(WindowManagerService.TAG, in removeAllWindows()
DScreenRotationAnimation.java45 static final int FREEZE_LAYER = WindowManagerService.TYPE_LAYER_MULTIPLIER * 200;
238 if (WindowManagerService.SHOW_LIGHT_TRANSACTIONS) Slog.i(WindowManagerService.TAG, in ScreenRotationAnimation()
250 if (WindowManagerService.DEBUG_SURFACE_TRACE) { in ScreenRotationAnimation()
276 if (WindowManagerService.SHOW_TRANSACTIONS || in ScreenRotationAnimation()
277 WindowManagerService.SHOW_SURFACE_ALLOC) Slog.i(WindowManagerService.TAG, in ScreenRotationAnimation()
284 if (WindowManagerService.SHOW_LIGHT_TRANSACTIONS) Slog.i(WindowManagerService.TAG, in ScreenRotationAnimation()
537 if (WindowManagerService.SHOW_LIGHT_TRANSACTIONS || DEBUG_STATE) Slog.i( in startAnimation()
538 WindowManagerService.TAG, in startAnimation()
561 if (WindowManagerService.SHOW_LIGHT_TRANSACTIONS || DEBUG_STATE) Slog.i( in startAnimation()
562 WindowManagerService.TAG, in startAnimation()
[all …]
DStackTapPointerEventListener.java24 import com.android.server.wm.WindowManagerService.H;
35 private final WindowManagerService mService;
38 public StackTapPointerEventListener(WindowManagerService service, in StackTapPointerEventListener()
DTaskStack.java19 import static com.android.server.wm.WindowManagerService.DEBUG_TASK_MOVEMENT;
20 import static com.android.server.wm.WindowManagerService.TAG;
41 private final WindowManagerService mService;
81 TaskStack(WindowManagerService service, int stackId) { in TaskStack()
108 if (WindowManagerService.DEBUG_RESIZE) Slog.d(TAG, in resizeWindows()
287 dimLayer = mDimWinAnimator.mAnimLayer - WindowManagerService.LAYER_OFFSET_DIM; in animateDimLayers()
360 mAnimationBackgroundSurface.show(animLayer - WindowManagerService.LAYER_OFFSET_DIM, in setAnimationBackground()
DDimLayer.java68 DimLayer(WindowManagerService service, TaskStack stack, DisplayContent displayContent) { in DimLayer()
75 if (WindowManagerService.DEBUG_SURFACE_TRACE) { in DimLayer()
85 if (WindowManagerService.SHOW_TRANSACTIONS || in DimLayer()
86 WindowManagerService.SHOW_SURFACE_ALLOC) Slog.i(TAG, in DimLayer()
90 Slog.e(WindowManagerService.TAG, "Exception creating Dim surface", e); in DimLayer()
DWindowState.java19 import static com.android.server.wm.WindowManagerService.DEBUG_CONFIGURATION;
20 import static com.android.server.wm.WindowManagerService.DEBUG_LAYOUT;
21 import static com.android.server.wm.WindowManagerService.DEBUG_ORIENTATION;
22 import static com.android.server.wm.WindowManagerService.DEBUG_RESIZE;
23 import static com.android.server.wm.WindowManagerService.DEBUG_VISIBILITY;
78 final WindowManagerService mService;
348 WindowState(WindowManagerService service, Session s, IWindow c, WindowToken token, in WindowState()
379 if (WindowManagerService.localLOGV) Slog.v( in WindowState()
404 attachedWindow.mAttrs.type) * WindowManagerService.TYPE_LAYER_MULTIPLIER in WindowState()
405 + WindowManagerService.TYPE_LAYER_OFFSET; in WindowState()
[all …]
DViewServer.java70 private final WindowManagerService mWindowManager;
84 ViewServer(WindowManagerService windowManager, int port) { in ViewServer()
206 class ViewServerWorker implements Runnable, WindowManagerService.WindowChangeListener {
DDisplayContent.java20 import static com.android.server.wm.WindowManagerService.DEBUG_VISIBILITY;
21 import static com.android.server.wm.WindowManagerService.TAG;
103 final WindowManagerService mService;
112 DisplayContent(Display display, WindowManagerService service) { in DisplayContent()
DFocusedStackFrame.java19 import static com.android.server.wm.WindowManagerService.DEBUG_STACK;
20 import static com.android.server.wm.WindowManagerService.DEBUG_SURFACE_TRACE;
DTask.java19 import static com.android.server.wm.WindowManagerService.TAG;
DAccessibilityController.java68 private final WindowManagerService mWindowManagerService;
72 public AccessibilityController(WindowManagerService service) { in AccessibilityController()
239 private final WindowManagerService mWindowManagerService;
247 public DisplayMagnifier(WindowManagerService windowManagerService, in DisplayMagnifier()
649 * WindowManagerService.TYPE_LAYER_MULTIPLIER); in ViewportWindow()
925 private final WindowManagerService mWindowManagerService;
933 public WindowsForAccessibilityObserver(WindowManagerService windowManagerService, in WindowsForAccessibilityObserver()
DStrictModeFlash.java47 …ctrl.setLayer(WindowManagerService.TYPE_LAYER_MULTIPLIER * 101); // one more than Watermark? arbi… in StrictModeFlash()
DEmulatorDisplayOverlay.java57 if (WindowManagerService.DEBUG_SURFACE_TRACE) { in EmulatorDisplayOverlay()
DCircularDisplayMask.java66 if (WindowManagerService.DEBUG_SURFACE_TRACE) { in CircularDisplayMask()
/frameworks/base/services/core/java/com/android/server/statusbar/
DStatusBarManagerService.java36 import com.android.server.wm.WindowManagerService;
53 private final WindowManagerService mWindowManager;
90 public StatusBarManagerService(Context context, WindowManagerService windowManager) { in StatusBarManagerService()

12