Home
last modified time | relevance | path

Searched refs:ISurfaceComposerClient (Results 1 – 17 of 17) 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()
DISurfaceComposer.cpp56 virtual sp<ISurfaceComposerClient> createConnection() in createConnection()
61 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); in createConnection()
64 virtual sp<ISurfaceComposerClient> createScopedConnection( in createScopedConnection()
71 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); in createScopedConnection()
DLayerState.cpp90 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder()); in read()
DAndroid.bp98 "ISurfaceComposerClient.cpp",
DSurfaceComposerClient.cpp626 sp<ISurfaceComposerClient> conn; in onFirstRef()
657 sp<ISurfaceComposerClient> client; in dispose()
/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.h45 class ISurfaceComposerClient; variable
83 virtual sp<ISurfaceComposerClient> createConnection() = 0;
93 virtual sp<ISurfaceComposerClient> createScopedConnection(
DSurfaceComposerClient.h43 class ISurfaceComposerClient; variable
207 sp<ISurfaceComposerClient> mClient;
/frameworks/native/libs/gui/include/private/gui/
DLayerState.h32 class ISurfaceComposerClient; variable
115 sp<ISurfaceComposerClient> client;
/frameworks/native/opengl/tests/lib/
DWindowSurface.cpp59 PIXEL_FORMAT_RGBX_8888, ISurfaceComposerClient::eOpaque); in WindowSurface()
/frameworks/base/libs/input/
DSpriteController.cpp376 ISurfaceComposerClient::eHidden | in obtainSurface()
377 ISurfaceComposerClient::eCursorWindow); in obtainSurface()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.h280 virtual sp<ISurfaceComposerClient> createConnection();
281 … virtual sp<ISurfaceComposerClient> createScopedConnection(const sp<IGraphicBufferProducer>& gbp);
DLayer.cpp118 if (flags & ISurfaceComposerClient::eHidden) in Layer()
120 if (flags & ISurfaceComposerClient::eOpaque) in Layer()
122 if (flags & ISurfaceComposerClient::eSecure) in Layer()
125 if (flags & ISurfaceComposerClient::eNonPremultiplied) in Layer()
351 mPotentialCursor = (flags & ISurfaceComposerClient::eCursorWindow) ? true : false; in setBuffers()
352 mProtectedByApp = (flags & ISurfaceComposerClient::eProtectedByApp) ? true : false; in setBuffers()
DSurfaceFlinger_hwc1.cpp232 static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) { in initClient()
240 sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() { in createConnection()
244 sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection( in createScopedConnection()
2453 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) != NULL) { in setTransactionState()
2681 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) { in createLayer()
2682 case ISurfaceComposerClient::eFXSurfaceNormal: in createLayer()
2687 case ISurfaceComposerClient::eFXSurfaceDim: in createLayer()
DSurfaceFlinger.cpp275 static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) { in initClient()
283 sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() { in createConnection()
287 sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection( in createScopedConnection()
2902 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) != NULL) { in setTransactionState()
3137 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) { in createLayer()
3138 case ISurfaceComposerClient::eFXSurfaceNormal: in createLayer()
3143 case ISurfaceComposerClient::eFXSurfaceDim: in createLayer()
/frameworks/native/libs/gui/tests/
DSurface_test.cpp463 sp<ISurfaceComposerClient> createConnection() override { return nullptr; } in createConnection()
464 sp<ISurfaceComposerClient> createScopedConnection( in createScopedConnection()
/frameworks/native/services/surfaceflinger/tests/
DTransaction_test.cpp1101 PIXEL_FORMAT_RGBA_8888, ISurfaceComposerClient::eHidden, in TEST_F()