Home
last modified time | relevance | path

Searched refs:ISurfaceComposerClient (Results 1 – 19 of 19) sorted by relevance

/frameworks/native/libs/gui/
DISurfaceComposerClient.cpp42 class BpSurfaceComposerClient : public SafeBpInterface<ISurfaceComposerClient> {
45 : SafeBpInterface<ISurfaceComposerClient>(impl, "BpSurfaceComposerClient") {} in BpSurfaceComposerClient()
53 return callRemote<decltype(&ISurfaceComposerClient::createSurface)>(Tag::CREATE_SURFACE, in createSurface()
61 return callRemote<decltype(&ISurfaceComposerClient::destroySurface)>(Tag::DESTROY_SURFACE, in destroySurface()
67 &ISurfaceComposerClient::clearLayerFrameStats)>(Tag::CLEAR_LAYER_FRAME_STATS, in clearLayerFrameStats()
73 &ISurfaceComposerClient::getLayerFrameStats)>(Tag::GET_LAYER_FRAME_STATS, handle, in getLayerFrameStats()
94 return callLocal(data, reply, &ISurfaceComposerClient::createSurface); in onTransact()
96 return callLocal(data, reply, &ISurfaceComposerClient::destroySurface); in onTransact()
98 return callLocal(data, reply, &ISurfaceComposerClient::clearLayerFrameStats); in onTransact()
100 return callLocal(data, reply, &ISurfaceComposerClient::getLayerFrameStats); in onTransact()
DSurfaceControl.cpp174 parcel->writeStrongBinder(ISurfaceComposerClient::asBinder(mClient->getClient())); in writeToParcel()
193 interface_cast<ISurfaceComposerClient>(client)), in readFromParcel()
DISurfaceComposer.cpp58 virtual sp<ISurfaceComposerClient> createConnection() in createConnection()
63 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); in createConnection()
66 virtual sp<ISurfaceComposerClient> createScopedConnection( in createScopedConnection()
73 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); in createScopedConnection()
DSurfaceComposerClient.cpp567 SurfaceComposerClient::SurfaceComposerClient(const sp<ISurfaceComposerClient>& client) in SurfaceComposerClient()
576 sp<ISurfaceComposerClient> conn; in onFirstRef()
607 sp<ISurfaceComposerClient> client; in dispose()
DAndroid.bp110 "ISurfaceComposerClient.cpp",
DLayerState.cpp98 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder()); in read()
/frameworks/native/libs/gui/include/gui/
DISurfaceComposerClient.h28 class ISurfaceComposerClient : public IInterface {
72 class BnSurfaceComposerClient : public SafeBnInterface<ISurfaceComposerClient> {
75 : SafeBnInterface<ISurfaceComposerClient>("BnSurfaceComposerClient") {} in BnSurfaceComposerClient()
DISurfaceComposer.h48 class ISurfaceComposerClient; variable
91 virtual sp<ISurfaceComposerClient> createConnection() = 0;
101 virtual sp<ISurfaceComposerClient> createScopedConnection(
DSurfaceComposerClient.h46 class ISurfaceComposerClient; variable
57 SurfaceComposerClient(const sp<ISurfaceComposerClient>& client);
295 inline sp<ISurfaceComposerClient> getClient() { return mClient; } in getClient()
302 sp<ISurfaceComposerClient> mClient;
DLayerState.h33 class ISurfaceComposerClient; variable
124 sp<ISurfaceComposerClient> client;
/frameworks/native/opengl/tests/lib/
DWindowSurface.cpp59 PIXEL_FORMAT_RGBX_8888, ISurfaceComposerClient::eOpaque); in WindowSurface()
/frameworks/native/services/surfaceflinger/
DBufferLayer.cpp69 if (flags & ISurfaceComposerClient::eNonPremultiplied) mPremultipliedAlpha = false; in BufferLayer()
129 mPotentialCursor = (flags & ISurfaceComposerClient::eCursorWindow) ? true : false; in setBuffers()
130 mProtectedByApp = (flags & ISurfaceComposerClient::eProtectedByApp) ? true : false; in setBuffers()
DSurfaceFlinger.h406 virtual sp<ISurfaceComposerClient> createConnection();
407 … virtual sp<ISurfaceComposerClient> createScopedConnection(const sp<IGraphicBufferProducer>& gbp);
DSurfaceFlinger.cpp375 static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) { in initClient()
383 sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() { in createConnection()
387 sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection( in createScopedConnection()
3187 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) { in containsAnyInvalidClientState()
3529 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) { in createLayer()
3530 case ISurfaceComposerClient::eFXSurfaceNormal: in createLayer()
3536 case ISurfaceComposerClient::eFXSurfaceColor: in createLayer()
DLayer.cpp107 if (flags & ISurfaceComposerClient::eHidden) layerFlags |= layer_state_t::eLayerHidden; in Layer()
108 if (flags & ISurfaceComposerClient::eOpaque) layerFlags |= layer_state_t::eLayerOpaque; in Layer()
109 if (flags & ISurfaceComposerClient::eSecure) layerFlags |= layer_state_t::eLayerSecure; in Layer()
/frameworks/base/libs/input/
DSpriteController.cpp348 ISurfaceComposerClient::eHidden | in obtainSurface()
349 ISurfaceComposerClient::eCursorWindow); in obtainSurface()
/frameworks/native/services/surfaceflinger/tests/
DTransaction_test.cpp959 colorLayer = createLayer("test", 32, 32, ISurfaceComposerClient::eFXSurfaceColor)); in TEST_F()
982 colorLayer = createLayer("test", 32, 32, ISurfaceComposerClient::eFXSurfaceColor)); in TEST_F()
994 colorLayer = createLayer("test", 32, 32, ISurfaceComposerClient::eFXSurfaceColor)); in TEST_F()
1019 "childWithColor", 32, 32, ISurfaceComposerClient::eFXSurfaceColor)); in TEST_F()
2164 PIXEL_FORMAT_RGBA_8888, ISurfaceComposerClient::eHidden, in TEST_F()
/frameworks/native/libs/gui/tests/
DSurface_test.cpp538 sp<ISurfaceComposerClient> createConnection() override { return nullptr; } in createConnection()
539 sp<ISurfaceComposerClient> createScopedConnection( in createScopedConnection()
/frameworks/native/services/surfaceflinger/tests/fakehwc/
DSFFakeHwc_test.cpp1190 PIXEL_FORMAT_RGBA_8888, ISurfaceComposerClient::eHidden, in TEST_F()