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

/frameworks/base/services/core/java/com/android/server/wm/
H A DStrictModeFlash.java45 SurfaceControl ctrl = null;
47 ctrl = new SurfaceControl(session, "StrictModeFlash",
49 ctrl.setLayerStack(display.getLayerStack());
50 ctrl.setLayer(WindowManagerService.TYPE_LAYER_MULTIPLIER * 101); // one more than Watermark? arbitrary.
51 ctrl.setPosition(0, 0);
52 ctrl.show();
53 mSurface.copyFrom(ctrl);
56 mSurfaceControl = ctrl;
H A DCircularDisplayMask.java68 SurfaceControl ctrl = null;
71 ctrl = new WindowSurfaceController.SurfaceTrace(session, "CircularDisplayMask",
75 ctrl = new SurfaceControl(session, "CircularDisplayMask", mScreenSize.x,
78 ctrl.setLayerStack(display.getLayerStack());
79 ctrl.setLayer(zOrder);
80 ctrl.setPosition(0, 0);
81 ctrl.show();
82 mSurface.copyFrom(ctrl);
85 mSurfaceControl = ctrl;
H A DEmulatorDisplayOverlay.java58 SurfaceControl ctrl = null;
61 ctrl = new WindowSurfaceController.SurfaceTrace(session, "EmulatorDisplayOverlay",
65 ctrl = new SurfaceControl(session, "EmulatorDisplayOverlay", mScreenSize.x,
68 ctrl.setLayerStack(display.getLayerStack());
69 ctrl.setLayer(zOrder);
70 ctrl.setPosition(0, 0);
71 ctrl.show();
72 mSurface.copyFrom(ctrl);
75 mSurfaceControl = ctrl;
H A DWatermark.java115 SurfaceControl ctrl = null;
117 ctrl = new SurfaceControl(session, "WatermarkSurface",
119 ctrl.setLayerStack(mDisplay.getLayerStack());
120 ctrl.setLayer(WindowManagerService.TYPE_LAYER_MULTIPLIER*100);
121 ctrl.setPosition(0, 0);
122 ctrl.show();
123 mSurface.copyFrom(ctrl);
126 mSurfaceControl = ctrl;
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp109 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
110 ctrl->decStrong((void *)nativeCreate);
114 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(nativeObject));
115 ctrl->clear();
116 ctrl->decStrong((void *)nativeCreate);
120 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
121 if (ctrl != NULL) {
122 ctrl->disconnect();
236 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
237 status_t err = ctrl
244 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
253 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
261 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
269 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
277 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
302 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
311 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
320 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
330 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
339 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
463 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
482 SurfaceControl* const ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
610 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
618 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
624 auto ctrl = reinterpret_cast<SurfaceControl *>(nativeObject); local
[all...]
H A Dandroid_view_Surface.cpp398 sp<SurfaceControl> ctrl(reinterpret_cast<SurfaceControl *>(surfaceControlNativeObj));
399 sp<Surface> surface(ctrl->getSurface());

Completed in 229 milliseconds