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

1 2 3

  /frameworks/base/core/jni/include/android_runtime/
android_view_SurfaceSession.h 24 class SurfaceComposerClient;
26 /* Gets the underlying SurfaceComposerClient for a SurfaceSession. */
27 extern sp<SurfaceComposerClient> android_view_SurfaceSession_getClient(
  /hardware/intel/common/libva/test/putsurface/
putsurface_android.cpp 28 #include <gui/SurfaceComposerClient.h>
37 static sp<SurfaceComposerClient> client0 = NULL;
41 static sp<SurfaceComposerClient> client1 = NULL;
65 client0 = new SurfaceComposerClient();
72 SurfaceComposerClient::openGlobalTransaction();
75 SurfaceComposerClient::closeGlobalTransaction();
77 SurfaceComposerClient::openGlobalTransaction();
79 SurfaceComposerClient::closeGlobalTransaction();
81 SurfaceComposerClient::openGlobalTransaction();
83 SurfaceComposerClient::closeGlobalTransaction()
    [all...]
  /hardware/intel/common/libva/test/common/
va_display_android.cpp 29 #include <gui/SurfaceComposerClient.h>
36 static sp<SurfaceComposerClient> client = NULL;
53 client = new SurfaceComposerClient();
60 SurfaceComposerClient::openGlobalTransaction();
63 SurfaceComposerClient::closeGlobalTransaction();
65 SurfaceComposerClient::openGlobalTransaction();
67 SurfaceComposerClient::closeGlobalTransaction();
69 SurfaceComposerClient::openGlobalTransaction();
71 SurfaceComposerClient::closeGlobalTransaction();
  /frameworks/base/core/jni/
android_view_SurfaceSession.cpp 26 #include <gui/SurfaceComposerClient.h>
36 sp<SurfaceComposerClient> android_view_SurfaceSession_getClient(
38 return reinterpret_cast<SurfaceComposerClient*>(
44 SurfaceComposerClient* client = new SurfaceComposerClient();
51 SurfaceComposerClient* client = new SurfaceComposerClient(parent->getIGraphicBufferProducer());
57 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr);
62 SurfaceComposerClient* client = reinterpret_cast<SurfaceComposerClient*>(ptr)
    [all...]
android_view_SurfaceControl.cpp 33 #include <gui/SurfaceComposerClient.h>
102 return reinterpret_cast<jlong>(new SurfaceComposerClient::Transaction);
105 static void releaseTransaction(SurfaceComposerClient::Transaction* t) {
117 sp<SurfaceComposerClient> client(android_view_SurfaceSession_getClient(env, sessionObj));
313 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
319 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
320 auto otherTransaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(
326 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
331 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj);
337 auto transaction = reinterpret_cast<SurfaceComposerClient::Transaction*>(transactionObj)
    [all...]
  /frameworks/native/opengl/tests/lib/
WindowSurface.cpp 19 #include <gui/SurfaceComposerClient.h>
29 sp<SurfaceComposerClient> surfaceComposerClient = new SurfaceComposerClient;
30 err = surfaceComposerClient->initCheck();
32 fprintf(stderr, "SurfaceComposerClient::initCheck error: %#x\n", err);
37 sp<IBinder> mainDpy = SurfaceComposerClient::getBuiltInDisplay(
40 err = SurfaceComposerClient::getDisplayInfo(mainDpy, &mainDpyInfo);
57 sp<SurfaceControl> sc = surfaceComposerClient->createSurface(
65 SurfaceComposerClient::Transaction{
    [all...]
  /packages/services/Car/evs/app/
WindowSurface.cpp 19 #include <gui/SurfaceComposerClient.h>
29 sp<SurfaceComposerClient> surfaceComposerClient = new SurfaceComposerClient;
30 err = surfaceComposerClient->initCheck();
32 fprintf(stderr, "SurfaceComposerClient::initCheck error: %#x\n", err);
37 sp<IBinder> mainDpy = SurfaceComposerClient::getBuiltInDisplay(
40 err = SurfaceComposerClient::getDisplayInfo(mainDpy, &mainDpyInfo);
57 sp<SurfaceControl> sc = surfaceComposerClient->createSurface(
65 SurfaceComposerClient::Transaction{
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 17 #define LOG_TAG "SurfaceComposerClient"
41 #include <gui/SurfaceComposerClient.h>
101 SurfaceComposerClient::Transaction::Transaction(const Transaction& other) :
110 SurfaceComposerClient::Transaction& SurfaceComposerClient::Transaction::merge(Transaction&& other) {
133 status_t SurfaceComposerClient::Transaction::apply(bool synchronous) {
176 sp<IBinder> SurfaceComposerClient::createDisplay(const String8& displayName, bool secure) {
181 void SurfaceComposerClient::destroyDisplay(const sp<IBinder>& display) {
185 sp<IBinder> SurfaceComposerClient::getBuiltInDisplay(int32_t id) {
189 void SurfaceComposerClient::Transaction::setAnimationTransaction()
    [all...]
SurfaceControl.cpp 39 #include <gui/SurfaceComposerClient.h>
49 const sp<SurfaceComposerClient>& client,
106 const sp<SurfaceComposerClient>& client(mClient);
113 const sp<SurfaceComposerClient>& client(mClient);
167 sp<SurfaceComposerClient> SurfaceControl::getClient() const
192 return new SurfaceControl(new SurfaceComposerClient(
  /frameworks/native/cmds/surfacereplayer/replayer/
Replayer.h 26 #include <gui/SurfaceComposerClient.h>
80 status_t doSurfaceTransaction(SurfaceComposerClient::Transaction& transaction,
82 void doDisplayTransaction(SurfaceComposerClient::Transaction& transaction,
85 void setPosition(SurfaceComposerClient::Transaction& t,
87 void setSize(SurfaceComposerClient::Transaction& t,
89 void setAlpha(SurfaceComposerClient::Transaction& t,
91 void setLayer(SurfaceComposerClient::Transaction& t,
93 void setCrop(SurfaceComposerClient::Transaction& t,
95 void setFinalCrop(SurfaceComposerClient::Transaction& t,
97 void setMatrix(SurfaceComposerClient::Transaction& t
    [all...]
Replayer.cpp 111 ALOGE("Couldn't create SurfaceComposerClient (%d)", status);
115 SurfaceComposerClient::enableVSyncInjections(true);
147 SurfaceComposerClient::enableVSyncInjections(false);
156 SurfaceComposerClient::enableVSyncInjections(false);
176 SurfaceComposerClient::enableVSyncInjections(false);
254 SurfaceComposerClient::enableVSyncInjections(false);
341 SurfaceComposerClient::Transaction liveTransaction;
362 SurfaceComposerClient::Transaction& transaction,
432 void Replayer::doDisplayTransaction(SurfaceComposerClient::Transaction& t,
460 void Replayer::setPosition(SurfaceComposerClient::Transaction& t
    [all...]
  /frameworks/wilhelm/tests/sandbox/
nativewindow.cpp 24 #include <gui/SurfaceComposerClient.h>
40 sp<SurfaceComposerClient> gComposerClient;
49 sp<SurfaceComposerClient> composerClient = new SurfaceComposerClient;
63 SurfaceComposerClient::Transaction{}
  /frameworks/native/libs/gui/include/gui/
SurfaceControl.h 40 class SurfaceComposerClient;
77 sp<SurfaceComposerClient> getClient() const;
84 friend class SurfaceComposerClient;
88 const sp<SurfaceComposerClient>& client,
99 sp<SurfaceComposerClient> mClient;
  /frameworks/base/libs/hwui/tests/common/
TestContext.h 24 #include <gui/SurfaceComposerClient.h>
61 sp<SurfaceComposerClient> mSurfaceComposerClient;
TestContext.cpp 43 sp<IBinder> dtoken(SurfaceComposerClient::getBuiltInDisplay(ISurfaceComposer::eDisplayIdMain));
44 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &display);
57 mSurfaceComposerClient = new SurfaceComposerClient();
83 SurfaceComposerClient::Transaction t;
  /frameworks/base/libs/hwui/
DeviceInfo.cpp 22 #include <gui/SurfaceComposerClient.h>
81 sp<IBinder> dtoken(SurfaceComposerClient::getBuiltInDisplay(ISurfaceComposer::eDisplayIdMain));
82 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &displayInfo);
  /packages/services/Car/evs/sampleDriver/
GlWrapper.h 29 #include <gui/SurfaceComposerClient.h>
35 using ::android::SurfaceComposerClient;
56 sp<SurfaceComposerClient> mFlinger;
GlWrapper.cpp 198 mFlinger = new SurfaceComposerClient();
200 ALOGE("SurfaceComposerClient couldn't be allocated");
205 ALOGE("SurfaceComposerClient::initCheck error: %#x", err);
210 sp <IBinder> mainDpy = SurfaceComposerClient::getBuiltInDisplay(
213 err = SurfaceComposerClient::getDisplayInfo(mainDpy, &mainDpyInfo);
342 SurfaceComposerClient::Transaction{}
352 SurfaceComposerClient::Transaction{}
  /frameworks/native/services/surfaceflinger/tests/
Stress_test.cpp 19 #include <gui/SurfaceComposerClient.h>
31 sp<SurfaceComposerClient> client = new SurfaceComposerClient;
  /frameworks/native/cmds/flatland/
GLHelper.h 26 class SurfaceComposerClient;
83 sp<SurfaceComposerClient> mSurfaceComposerClient;
  /frameworks/native/libs/gui/tests/
GLTest.h 22 #include <gui/SurfaceComposerClient.h>
61 sp<SurfaceComposerClient> mComposerClient;
  /hardware/intel/img/hwcomposer/merrifield/test/
nv12_ved_test.cpp 22 #include <gui/SurfaceComposerClient.h>
92 sp < SurfaceComposerClient > composerClient = new SurfaceComposerClient;
137 SurfaceComposerClient::openGlobalTransaction();
143 SurfaceComposerClient::closeGlobalTransaction();
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 34 class SurfaceComposerClient;
118 sp<SurfaceComposerClient> session() const;
160 sp<SurfaceComposerClient> mSession;
  /frameworks/native/services/surfaceflinger/tests/fakehwc/
FakeComposerUtils.h 21 #include <gui/SurfaceComposerClient.h>
101 class TransactionScope : public android::SurfaceComposerClient::Transaction {
  /frameworks/av/cmds/stagefright/
stream.cpp 41 #include <gui/SurfaceComposerClient.h>
318 sp<SurfaceComposerClient> composerClient = new SurfaceComposerClient;
321 sp<IBinder> display(SurfaceComposerClient::getBuiltInDisplay(
324 SurfaceComposerClient::getDisplayInfo(display, &info);
341 SurfaceComposerClient::Transaction{}

Completed in 337 milliseconds

1 2 3