Searched refs:ctrl (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DEmulatorDisplayOverlay.java55 SurfaceControl ctrl = null;
58 ctrl = new WindowStateAnimator.SurfaceTrace(session, "EmulatorDisplayOverlay",
62 ctrl = new SurfaceControl(session, "EmulatorDisplayOverlay", mScreenSize.x,
65 ctrl.setLayerStack(display.getLayerStack());
66 ctrl.setLayer(zOrder);
67 ctrl.setPosition(0, 0);
68 ctrl.show();
69 mSurface.copyFrom(ctrl);
72 mSurfaceControl = ctrl;
H A DStrictModeFlash.java42 SurfaceControl ctrl = null;
44 ctrl = new SurfaceControl(session, "StrictModeFlash",
46 ctrl.setLayerStack(display.getLayerStack());
47 ctrl.setLayer(WindowManagerService.TYPE_LAYER_MULTIPLIER * 101); // one more than Watermark? arbitrary.
48 ctrl.setPosition(0, 0);
49 ctrl.show();
50 mSurface.copyFrom(ctrl);
53 mSurfaceControl = ctrl;
H A DCircularDisplayMask.java64 SurfaceControl ctrl = null;
67 ctrl = new WindowStateAnimator.SurfaceTrace(session, "CircularDisplayMask",
71 ctrl = new SurfaceControl(session, "CircularDisplayMask", mScreenSize.x,
74 ctrl.setLayerStack(display.getLayerStack());
75 ctrl.setLayer(zOrder);
76 ctrl.setPosition(0, 0);
77 ctrl.show();
78 mSurface.copyFrom(ctrl);
81 mSurfaceControl = ctrl;
H A DFocusedStackFrame.java48 SurfaceControl ctrl = null;
51 ctrl = new SurfaceTrace(session, "FocusedStackFrame",
54 ctrl = new SurfaceControl(session, "FocusedStackFrame",
57 ctrl.setLayerStack(display.getLayerStack());
58 ctrl.setAlpha(ALPHA);
59 mSurface.copyFrom(ctrl);
62 mSurfaceControl = ctrl;
H A DWatermark.java113 SurfaceControl ctrl = null;
115 ctrl = new SurfaceControl(session, "WatermarkSurface",
117 ctrl.setLayerStack(mDisplay.getLayerStack());
118 ctrl.setLayer(WindowManagerService.TYPE_LAYER_MULTIPLIER*100);
119 ctrl.setPosition(0, 0);
120 ctrl.show();
121 mSurface.copyFrom(ctrl);
124 mSurfaceControl = ctrl;
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp108 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
109 ctrl->decStrong((void *)nativeCreate);
113 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
114 ctrl->clear();
115 ctrl->decStrong((void *)nativeCreate);
229 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
230 status_t err = ctrl->setLayer(zorder);
237 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
238 status_t err = ctrl->setPosition(x, y);
245 SurfaceControl* const ctrl local
253 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
261 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
286 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
295 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
304 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
313 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
435 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
454 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
[all...]
H A Dandroid_view_Surface.cpp305 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(surfaceControlNativeObj));
306 sp<Surface> surface(ctrl->getSurface());

Completed in 63 milliseconds