HomeSort by relevance Sort by last modified time
    Searched defs:SurfaceControl (Results 1 - 18 of 18) sorted by null

  /frameworks/native/include/gui/
SurfaceControl.h 43 class SurfaceControl : public RefBase
46 static bool isValid(const sp<SurfaceControl>& surface) {
55 const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs);
91 const sp<SurfaceControl>& control, Parcel* parcel);
101 SurfaceControl& operator = (SurfaceControl& rhs);
102 SurfaceControl(const SurfaceControl& rhs);
107 SurfaceControl(
    [all...]
  /frameworks/native/libs/gui/
SurfaceControl.cpp 17 #define LOG_TAG "SurfaceControl"
40 #include <gui/SurfaceControl.h>
45 // SurfaceControl
48 SurfaceControl::SurfaceControl(
56 SurfaceControl::~SurfaceControl()
61 void SurfaceControl::destroy()
74 void SurfaceControl::clear()
85 void SurfaceControl::disconnect()
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
DisplayDevice.java 24 import android.view.SurfaceControl;
147 SurfaceControl.setDisplayLayerStack(mDisplayToken, layerStack);
180 SurfaceControl.setDisplayProjection(mDisplayToken,
191 SurfaceControl.setDisplaySurface(mDisplayToken, surface);
LocalDisplayAdapter.java 37 import android.view.SurfaceControl;
58 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN,
59 SurfaceControl.BUILT_IN_DISPLAY_ID_HDMI,
85 IBinder displayToken = SurfaceControl.getBuiltInDisplay(builtInDisplayId);
87 SurfaceControl.PhysicalDisplayInfo[] configs =
88 SurfaceControl.getDisplayConfigs(displayToken);
95 int activeConfig = SurfaceControl.getActiveConfig(displayToken);
133 return SurfaceControl.POWER_MODE_OFF;
135 return SurfaceControl.POWER_MODE_DOZE;
137 return SurfaceControl.POWER_MODE_DOZE_SUSPEND
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 31 import android.view.SurfaceControl;
40 private SurfaceControl mDimSurface;
98 SurfaceControl.openTransaction();
104 SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN);
106 mDimSurface = new SurfaceControl(service.mFxSession, mName,
108 SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN);
119 SurfaceControl.closeTransaction();
230 SurfaceControl.openTransaction()
    [all...]
DragState.java 46 import android.view.SurfaceControl;
82 SurfaceControl mSurfaceControl;
110 DragState(WindowManagerService service, IBinder token, SurfaceControl surface,
414 SurfaceControl.openTransaction();
421 SurfaceControl.closeTransaction();
Session.java 46 import android.view.SurfaceControl;
346 final SurfaceControl surfaceControl = mService.mDragState.mSurfaceControl;
349 SurfaceControl.openTransaction();
351 surfaceControl.setPosition(touchX - thumbCenterX,
353 surfaceControl.setLayer(mService.mDragState.getDragLayerLw());
354 surfaceControl.setLayerStack(display.getLayerStack());
355 surfaceControl.show();
357 SurfaceControl.closeTransaction();
TaskPositioner.java 53 import android.view.SurfaceControl;
470 SurfaceControl.openTransaction();
476 SurfaceControl.closeTransaction();
ScreenRotationAnimation.java 38 import android.view.SurfaceControl;
65 SurfaceControl mSurfaceControl;
256 SurfaceControl.openTransaction();
261 int flags = SurfaceControl.HIDDEN;
263 flags |= SurfaceControl.SECURE;
273 mSurfaceControl = new SurfaceControl(session, "ScreenshotSurface",
281 SurfaceControl.screenshot(SurfaceControl.getBuiltInDisplay(
282 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), sur);
298 SurfaceControl.closeTransaction()
    [all...]
WindowAnimator.java 54 import android.view.SurfaceControl;
    [all...]
DockedStackDividerController.java 44 import android.view.SurfaceControl;
467 SurfaceControl.openTransaction();
484 SurfaceControl.closeTransaction();
    [all...]
TaskStack.java 46 import android.view.SurfaceControl;
    [all...]
WindowSurfaceController.java 37 import android.view.SurfaceControl;
52 private SurfaceControl mSurfaceControl;
83 // we use a special SurfaceControl which mirrors commands
95 mSurfaceControl = new SurfaceControl(
130 SurfaceControl.openTransaction();
149 SurfaceControl.closeTransaction();
233 SurfaceControl.openTransaction();
237 SurfaceControl.closeTransaction();
341 SurfaceControl.openTransaction();
345 SurfaceControl.closeTransaction()
    [all...]
WindowSurfacePlacer.java 70 import android.view.SurfaceControl;
149 private final ArrayList<SurfaceControl> mPendingDestroyingSurfaces = new ArrayList<>();
315 SurfaceControl.openTransaction();
321 SurfaceControl.closeTransaction();
    [all...]
WindowStateAnimator.java 61 import android.view.SurfaceControl;
192 /** The pixel format of the underlying SurfaceControl */
704 int flags = SurfaceControl.HIDDEN;
708 flags |= SurfaceControl.SECURE;
745 flags |= SurfaceControl.OPAQUE;
    [all...]
WindowManagerService.java 111 import android.view.SurfaceControl;
    [all...]
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 34 import android.view.SurfaceControl;
160 return SurfaceControl.screenshot(width, height);
215 SurfaceControl.clearAnimationFrameStats();
231 SurfaceControl.getAnimationFrameStats(stats);
  /frameworks/base/core/java/android/view/
SurfaceControl.java 28 * SurfaceControl
31 public class SurfaceControl {
32 private static final String TAG = "SurfaceControl";
81 private static native SurfaceControl.PhysicalDisplayInfo[] nativeGetDisplayConfigs(
217 * Use only with {@link SurfaceControl#getBuiltInDisplay(int)}.
223 * Use only with {@link SurfaceControl#getBuiltInDisplay(int)}.
231 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
237 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
243 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
249 * low power mode. Use only with {@link SurfaceControl#setDisplayPowerMode}
    [all...]

Completed in 387 milliseconds