HomeSort by relevance Sort by last modified time
    Searched defs:SurfaceControl (Results 1 - 13 of 13) 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);
73 const sp<SurfaceControl>& control, Parcel* parcel);
82 SurfaceControl& operator = (SurfaceControl& rhs);
83 SurfaceControl(const SurfaceControl& rhs);
88 SurfaceControl(
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
DisplayDevice.java 23 import android.view.SurfaceControl;
131 SurfaceControl.setDisplayLayerStack(mDisplayToken, layerStack);
164 SurfaceControl.setDisplayProjection(mDisplayToken,
175 SurfaceControl.setDisplaySurface(mDisplayToken, surface);
LocalDisplayAdapter.java 30 import android.view.SurfaceControl;
45 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN,
46 SurfaceControl.BUILT_IN_DISPLAY_ID_HDMI,
71 IBinder displayToken = SurfaceControl.getBuiltInDisplay(builtInDisplayId);
73 SurfaceControl.PhysicalDisplayInfo[] configs =
74 SurfaceControl.getDisplayConfigs(displayToken);
81 int activeConfig = SurfaceControl.getActiveConfig(displayToken);
119 return SurfaceControl.POWER_MODE_OFF;
121 return SurfaceControl.POWER_MODE_DOZE;
123 return SurfaceControl.POWER_MODE_DOZE_SUSPEND
    [all...]
  /frameworks/native/libs/gui/
SurfaceControl.cpp 17 #define LOG_TAG "SurfaceControl"
39 #include <gui/SurfaceControl.h>
44 // SurfaceControl
47 SurfaceControl::SurfaceControl(
55 SurfaceControl::~SurfaceControl()
60 void SurfaceControl::destroy()
73 void SurfaceControl::clear()
84 bool SurfaceControl::isSameSurface
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 24 import android.view.SurfaceControl;
36 SurfaceControl mDimSurface;
73 SurfaceControl.openTransaction();
79 SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN);
81 mDimSurface = new SurfaceControl(service.mFxSession, TAG,
83 SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN);
92 SurfaceControl.closeTransaction();
168 SurfaceControl.openTransaction()
    [all...]
WindowAnimator.java 38 import android.view.SurfaceControl;
563 SurfaceControl.openTransaction();
564 SurfaceControl.setAnimationTransaction();
637 SurfaceControl.closeTransaction();
    [all...]
DragState.java 36 import android.view.SurfaceControl;
48 SurfaceControl mSurfaceControl;
67 DragState(WindowManagerService service, IBinder token, SurfaceControl surface,
297 SurfaceControl.openTransaction();
304 SurfaceControl.closeTransaction();
Session.java 45 import android.view.SurfaceControl;
328 final SurfaceControl surfaceControl = mService.mDragState.mSurfaceControl;
331 SurfaceControl.openTransaction();
333 surfaceControl.setPosition(touchX - thumbCenterX,
335 surfaceControl.setAlpha(.7071f);
336 surfaceControl.setLayer(mService.mDragState.getDragLayerLw());
337 surfaceControl.setLayerStack(display.getLayerStack());
338 surfaceControl.show();
340 SurfaceControl.closeTransaction()
    [all...]
ScreenRotationAnimation.java 32 import android.view.SurfaceControl;
49 SurfaceControl mSurfaceControl;
240 SurfaceControl.openTransaction();
245 int flags = SurfaceControl.HIDDEN;
247 flags |= SurfaceControl.SECURE;
257 mSurfaceControl = new SurfaceControl(session, "ScreenshotSurface",
265 SurfaceControl.screenshot(SurfaceControl.getBuiltInDisplay(
266 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN), sur);
283 SurfaceControl.closeTransaction()
    [all...]
WindowStateAnimator.java 49 import android.view.SurfaceControl;
100 SurfaceControl mSurfaceControl;
101 SurfaceControl mPendingDestroySurface;
516 static class SurfaceTrace extends SurfaceControl {
728 SurfaceControl createSurfaceLocked() {
747 int flags = SurfaceControl.HIDDEN;
751 flags |= SurfaceControl.SECURE;
755 flags |= SurfaceControl.SECURE;
    [all...]
WindowManagerService.java 127 import android.view.SurfaceControl;
    [all...]
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 32 import android.view.SurfaceControl;
153 return SurfaceControl.screenshot(width, height);
206 SurfaceControl.clearAnimationFrameStats();
222 SurfaceControl.getAnimationFrameStats(stats);
  /frameworks/base/core/java/android/view/
SurfaceControl.java 28 * SurfaceControl
31 public class SurfaceControl {
32 private static final String TAG = "SurfaceControl";
78 private static native SurfaceControl.PhysicalDisplayInfo[] nativeGetDisplayConfigs(
208 * Use only with {@link SurfaceControl#getBuiltInDisplay(int)}.
214 * Use only with {@link SurfaceControl#getBuiltInDisplay(int)}.
222 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
228 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
234 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
240 * low power mode. Use only with {@link SurfaceControl#setDisplayPowerMode}
    [all...]

Completed in 552 milliseconds