HomeSort by relevance Sort by last modified time
    Searched refs:SurfaceControl (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /frameworks/base/core/java/android/view/
SurfaceControl.aidl 19 parcelable SurfaceControl;
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...]
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
SurfaceControlCompat.java 19 import android.view.SurfaceControl;
22 SurfaceControl mSurfaceControl;
24 public SurfaceControlCompat(SurfaceControl surfaceControl) {
25 mSurfaceControl = surfaceControl;
  /frameworks/base/services/core/java/com/android/server/wm/
SurfaceBuilderFactory.java 20 import android.view.SurfaceControl;
23 SurfaceControl.Builder make(SurfaceSession s);
TransactionFactory.java 19 import android.view.SurfaceControl.Transaction;
Dimmer.java 28 import android.view.SurfaceControl;
44 private final SurfaceControl mDimLayer;
46 private DimAnimatable(SurfaceControl dimLayer) {
51 public SurfaceControl.Transaction getPendingTransaction() {
61 public void onAnimationLeashCreated(SurfaceControl.Transaction t, SurfaceControl leash) {
65 public void onAnimationLeashDestroyed(SurfaceControl.Transaction t) {
69 public SurfaceControl.Builder makeAnimationLeash() {
74 public SurfaceControl getAnimationLeashParent() {
79 public SurfaceControl getSurfaceControl()
    [all...]
AnimationAdapter.java 21 import android.view.SurfaceControl;
22 import android.view.SurfaceControl.Transaction;
64 void startAnimation(SurfaceControl animationLeash, Transaction t,
73 void onAnimationCancelled(SurfaceControl animationLeash);
LocalAnimationAdapter.java 24 import android.view.SurfaceControl;
25 import android.view.SurfaceControl.Transaction;
62 public void startAnimation(SurfaceControl animationLeash, Transaction t,
69 public void onAnimationCancelled(SurfaceControl animationLeash) {
140 void apply(Transaction t, SurfaceControl leash, long currentPlayTime);
SurfaceAnimator.java 30 import android.view.SurfaceControl;
31 import android.view.SurfaceControl.Transaction;
52 SurfaceControl mLeash;
111 final SurfaceControl surface = mAnimatable.getSurfaceControl();
192 void setRelativeLayer(Transaction t, SurfaceControl relativeTo, int layer) {
201 void reparent(Transaction t, SurfaceControl newParent) {
216 final SurfaceControl surface = mAnimatable.getSurfaceControl();
217 final SurfaceControl parent = mAnimatable.getAnimationLeashParent();
252 final SurfaceControl leash = mLeash;
269 final SurfaceControl surface = mAnimatable.getSurfaceControl()
    [all...]
AppWindowThumbnail.java 34 import android.view.SurfaceControl;
35 import android.view.SurfaceControl.Builder;
36 import android.view.SurfaceControl.Transaction;
49 private final SurfaceControl mSurfaceControl;
147 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
165 public SurfaceControl getSurfaceControl() {
170 public SurfaceControl getAnimationLeashParent() {
175 public SurfaceControl getParentSurfaceControl() {
BlackFrame.java 20 import static android.view.SurfaceControl.FX_SURFACE_DIM;
32 import android.view.SurfaceControl;
42 final SurfaceControl surface;
44 BlackSurface(SurfaceControl.Transaction transaction, int layer,
66 void setAlpha(SurfaceControl.Transaction t, float alpha) {
70 void setMatrix(SurfaceControl.Transaction t, Matrix matrix) {
90 void clearMatrix(SurfaceControl.Transaction t) {
116 public BlackFrame(SurfaceControl.Transaction t,
165 public void hide(SurfaceControl.Transaction t) {
175 public void setAlpha(SurfaceControl.Transaction t, float alpha)
    [all...]
Letterbox.java 19 import static android.view.SurfaceControl.HIDDEN;
22 import android.view.SurfaceControl;
27 * Manages a set of {@link SurfaceControl}s to draw a black letterbox between an
34 private final Supplier<SurfaceControl.Builder> mFactory;
45 * @param surfaceControlFactory a factory for creating the managed {@link SurfaceControl}s
47 public Letterbox(Supplier<SurfaceControl.Builder> surfaceControlFactory) {
101 * Destroys the managed {@link SurfaceControl}s.
121 public void applySurfaceChanges(SurfaceControl.Transaction t) {
131 private SurfaceControl mSurface;
178 public void applySurfaceChanges(SurfaceControl.Transaction t)
    [all...]
  /frameworks/native/opengl/tests/lib/include/
WindowSurface.h 20 #include <gui/SurfaceControl.h>
44 sp<SurfaceControl> mSurfaceControl;
  /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/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...]
SurfaceComposerClient.h 36 #include <gui/SurfaceControl.h>
108 sp<SurfaceControl> createSurface(
114 SurfaceControl* parent = nullptr, // parent
124 sp<SurfaceControl>* outSurface,
126 SurfaceControl* parent = nullptr, // parent
146 std::size_t operator()(const sp<SurfaceControl>& sc) const {
147 return std::hash<SurfaceControl *>{}(sc.get());
152 std::unordered_map<sp<SurfaceControl>, ComposerState, SCHash> mComposerStates;
161 layer_state_t* getLayerState(const sp<SurfaceControl>& sc);
173 Transaction& show(const sp<SurfaceControl>& sc)
    [all...]
  /packages/services/Car/evs/app/
WindowSurface.h 20 #include <gui/SurfaceControl.h>
43 android::sp<android::SurfaceControl> mSurfaceControl;
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
DimmerTests.java 33 import android.view.SurfaceControl;
49 final SurfaceControl mControl = mock(SurfaceControl.class);
50 final SurfaceControl.Transaction mTransaction = mock(SurfaceControl.Transaction.class);
57 public SurfaceControl getSurfaceControl() {
62 public SurfaceControl.Transaction getPendingTransaction() {
69 final SurfaceControl mHostControl = mock(SurfaceControl.class);
70 final SurfaceControl.Transaction mHostTransaction = mock(SurfaceControl.Transaction.class)
    [all...]
ZOrderingTests.java 40 import android.view.SurfaceControl;
62 private class LayerRecordingTransaction extends SurfaceControl.Transaction {
63 HashMap<SurfaceControl, Integer> mLayersForControl = new HashMap();
64 HashMap<SurfaceControl, SurfaceControl> mRelativeLayersForControl = new HashMap();
67 public SurfaceControl.Transaction setLayer(SurfaceControl sc, int layer) {
74 public SurfaceControl.Transaction setRelativeLayer(SurfaceControl sc,
75 SurfaceControl relativeTo
    [all...]
SurfaceAnimatorTest.java 34 import android.view.SurfaceControl;
35 import android.view.SurfaceControl.Builder;
36 import android.view.SurfaceControl.Transaction;
98 final SurfaceControl firstLeash = mAnimatable.mLeash;
160 final SurfaceControl leash = mAnimatable.mLeash;
208 final SurfaceControl mParent;
209 final SurfaceControl mSurface;
211 SurfaceControl mLeash;
238 public void onAnimationLeashCreated(Transaction t, SurfaceControl leash) {
247 return new SurfaceControl.Builder(mSession)
    [all...]
  /frameworks/native/cmds/surfacereplayer/replayer/
BufferQueueScheduler.h 23 #include <gui/SurfaceControl.h>
55 BufferQueueScheduler(const sp<SurfaceControl>& surfaceControl, const HSV& color, int id);
61 void setSurfaceControl(const sp<SurfaceControl>& surfaceControl, const HSV& color);
70 sp<SurfaceControl> mSurfaceControl;
  /frameworks/base/libs/hwui/tests/common/
TestContext.h 25 #include <gui/SurfaceControl.h>
62 sp<SurfaceControl> mSurfaceControl;
  /frameworks/base/packages/Shell/src/com/android/shell/
Screenshooter.java 25 import android.view.SurfaceControl;
55 SurfaceControl.screenshot(crop, displayWidth, displayHeight, rotation);
  /frameworks/native/cmds/flatland/
GLHelper.h 19 #include <gui/SurfaceControl.h>
27 class SurfaceControl;
58 sp<SurfaceControl>* surfaceControl, EGLSurface* surface);
  /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...]

Completed in 531 milliseconds

1 2 3 4 5