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

  /frameworks/native/libs/gui/include/gui/
SurfaceControl.h 44 class SurfaceControl : public RefBase
47 static sp<SurfaceControl> readFromParcel(Parcel* parcel);
50 static bool isValid(const sp<SurfaceControl>& surface) {
59 const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs);
68 const sp<SurfaceControl>& control, Parcel* parcel);
81 SurfaceControl& operator = (SurfaceControl& rhs);
82 SurfaceControl(const SurfaceControl& rhs)
    [all...]
  /frameworks/native/libs/gui/
SurfaceControl.cpp 17 #define LOG_TAG "SurfaceControl"
40 #include <gui/SurfaceControl.h>
45 // SurfaceControl
48 SurfaceControl::SurfaceControl(
57 SurfaceControl::~SurfaceControl()
62 void SurfaceControl::destroy()
77 void SurfaceControl::clear()
88 void SurfaceControl::disconnect()
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
TaskSnapshotSurface.java 64 import android.view.SurfaceControl;
112 private SurfaceControl mChildSurfaceControl;
310 mChildSurfaceControl = new SurfaceControl.Builder(session)
321 SurfaceControl.openTransaction();
333 SurfaceControl.closeTransaction();
AppWindowToken.java 97 import android.view.SurfaceControl;
98 import android.view.SurfaceControl.Transaction;
520 SurfaceControl.openTransaction();
524 SurfaceControl.closeTransaction();
    [all...]
ScreenRotationAnimation.java 39 import android.view.SurfaceControl;
66 SurfaceControl mSurfaceControl;
263 final SurfaceControl.Transaction t = new SurfaceControl.Transaction();
273 final int displayId = SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN;
274 final IBinder displayHandle = SurfaceControl.getBuiltInDisplay(displayId);
281 SurfaceControl.screenshot(displayHandle, sur);
303 private void setSnapshotTransform(SurfaceControl.Transaction t, Matrix matrix, float alpha) {
351 private void setRotation(SurfaceControl.Transaction t, int rotation) {
364 public boolean setRotation(SurfaceControl.Transaction t, int rotation
    [all...]
WindowManagerService.java 215 import android.view.SurfaceControl;
    [all...]
  /frameworks/base/core/java/android/app/
UiAutomationConnection.java 35 import android.view.SurfaceControl;
167 return SurfaceControl.screenshot(crop, width, height, rotation);
222 SurfaceControl.clearAnimationFrameStats();
238 SurfaceControl.getAnimationFrameStats(stats);
  /frameworks/base/services/core/java/com/android/server/display/
LocalDisplayAdapter.java 42 import android.view.SurfaceControl;
64 SurfaceControl.BUILT_IN_DISPLAY_ID_MAIN,
65 SurfaceControl.BUILT_IN_DISPLAY_ID_HDMI,
91 IBinder displayToken = SurfaceControl.getBuiltInDisplay(builtInDisplayId);
93 SurfaceControl.PhysicalDisplayInfo[] configs =
94 SurfaceControl.getDisplayConfigs(displayToken);
101 int activeConfig = SurfaceControl.getActiveConfig(displayToken);
109 int activeColorMode = SurfaceControl.getActiveColorMode(displayToken);
118 int[] colorModes = SurfaceControl.getDisplayColorModes(displayToken);
150 return SurfaceControl.POWER_MODE_OFF
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceView.java 120 SurfaceControl mDeferredDestroySurfaceControl;
178 private int mSurfaceFlags = SurfaceControl.HIDDEN;
182 private SurfaceControl.Transaction mRtTransaction = new SurfaceControl.Transaction();
451 mSurfaceFlags |= SurfaceControl.SECURE;
453 mSurfaceFlags &= ~SurfaceControl.SECURE;
459 mSurfaceFlags |= SurfaceControl.OPAQUE;
461 mSurfaceFlags &= ~SurfaceControl.OPAQUE;
541 (mSurfaceFlags & SurfaceControl.OPAQUE) != 0,
542 new SurfaceControl.Builder(mSurfaceSession
    [all...]
SurfaceControl.java 57 * SurfaceControl
60 public class SurfaceControl implements Parcelable {
61 private static final String TAG = "SurfaceControl";
134 private static native SurfaceControl.PhysicalDisplayInfo[] nativeGetDisplayConfigs(
295 * Use only with {@link SurfaceControl#getBuiltInDisplay(int)}.
301 * Use only with {@link SurfaceControl#getBuiltInDisplay(int)}.
309 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
315 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
321 * Use only with {@link SurfaceControl#setDisplayPowerMode}.
327 * low power mode. Use only with {@link SurfaceControl#setDisplayPowerMode}
    [all...]

Completed in 1392 milliseconds