/frameworks/native/libs/gui/ |
ISurfaceComposerClient.cpp | 20 #include <gui/ISurfaceComposerClient.h> 42 class BpSurfaceComposerClient : public SafeBpInterface<ISurfaceComposerClient> { 45 : SafeBpInterface<ISurfaceComposerClient>(impl, "BpSurfaceComposerClient") {} 53 return callRemote<decltype(&ISurfaceComposerClient::createSurface)>(Tag::CREATE_SURFACE, 61 return callRemote<decltype(&ISurfaceComposerClient::destroySurface)>(Tag::DESTROY_SURFACE, 67 &ISurfaceComposerClient::clearLayerFrameStats)>(Tag::CLEAR_LAYER_FRAME_STATS, 73 &ISurfaceComposerClient::getLayerFrameStats)>(Tag::GET_LAYER_FRAME_STATS, handle, 82 IMPLEMENT_META_INTERFACE(SurfaceComposerClient, "android.ui.ISurfaceComposerClient"); 94 return callLocal(data, reply, &ISurfaceComposerClient::createSurface); 96 return callLocal(data, reply, &ISurfaceComposerClient::destroySurface) [all...] |
SurfaceControl.cpp | 174 parcel->writeStrongBinder(ISurfaceComposerClient::asBinder(mClient->getClient())); 193 interface_cast<ISurfaceComposerClient>(client)),
|
LayerState.cpp | 19 #include <gui/ISurfaceComposerClient.h> 98 client = interface_cast<ISurfaceComposerClient>(input.readStrongBinder());
|
ISurfaceComposer.cpp | 30 #include <gui/ISurfaceComposerClient.h> 58 virtual sp<ISurfaceComposerClient> createConnection() 63 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); 66 virtual sp<ISurfaceComposerClient> createScopedConnection( 73 return interface_cast<ISurfaceComposerClient>(reply.readStrongBinder()); [all...] |
SurfaceComposerClient.cpp | 38 #include <gui/ISurfaceComposerClient.h> 567 SurfaceComposerClient::SurfaceComposerClient(const sp<ISurfaceComposerClient>& client) 576 sp<ISurfaceComposerClient> conn; 607 sp<ISurfaceComposerClient> client;
|
/frameworks/native/libs/gui/include/gui/ |
ISurfaceComposerClient.h | 28 class ISurfaceComposerClient : public IInterface { 72 class BnSurfaceComposerClient : public SafeBnInterface<ISurfaceComposerClient> { 75 : SafeBnInterface<ISurfaceComposerClient>("BnSurfaceComposerClient") {}
|
ISurfaceComposer.h | 48 class ISurfaceComposerClient; 91 virtual sp<ISurfaceComposerClient> createConnection() = 0; 101 virtual sp<ISurfaceComposerClient> createScopedConnection(
|
LayerState.h | 33 class ISurfaceComposerClient; 124 sp<ISurfaceComposerClient> client;
|
SurfaceComposerClient.h | 46 class ISurfaceComposerClient; 57 SurfaceComposerClient(const sp<ISurfaceComposerClient>& client); 295 inline sp<ISurfaceComposerClient> getClient() { return mClient; } 302 sp<ISurfaceComposerClient> mClient;
|
SurfaceControl.h | 31 #include <gui/ISurfaceComposerClient.h>
|
/frameworks/native/opengl/tests/lib/ |
WindowSurface.cpp | 59 PIXEL_FORMAT_RGBX_8888, ISurfaceComposerClient::eOpaque);
|
/packages/services/Car/evs/app/ |
WindowSurface.cpp | 59 PIXEL_FORMAT_RGBX_8888, ISurfaceComposerClient::eOpaque);
|
/frameworks/native/services/surfaceflinger/ |
Client.h | 27 #include <gui/ISurfaceComposerClient.h> 57 // ISurfaceComposerClient interface
|
BufferLayer.h | 32 #include <gui/ISurfaceComposerClient.h>
|
BufferLayer.cpp | 69 if (flags & ISurfaceComposerClient::eNonPremultiplied) mPremultipliedAlpha = false; 129 mPotentialCursor = (flags & ISurfaceComposerClient::eCursorWindow) ? true : false; 130 mProtectedByApp = (flags & ISurfaceComposerClient::eProtectedByApp) ? true : false; [all...] |
SurfaceFlinger.h | 44 #include <gui/ISurfaceComposerClient.h> 406 virtual sp<ISurfaceComposerClient> createConnection(); 407 virtual sp<ISurfaceComposerClient> createScopedConnection(const sp<IGraphicBufferProducer>& gbp); 542 // ISurfaceComposerClient::destroySurface() [all...] |
Layer.h | 32 #include <gui/ISurfaceComposerClient.h>
|
SurfaceFlinger.cpp | 375 static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) { 383 sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() { 387 sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection( [all...] |
Layer.cpp | 107 if (flags & ISurfaceComposerClient::eHidden) layerFlags |= layer_state_t::eLayerHidden; 108 if (flags & ISurfaceComposerClient::eOpaque) layerFlags |= layer_state_t::eLayerOpaque; 109 if (flags & ISurfaceComposerClient::eSecure) layerFlags |= layer_state_t::eLayerSecure; [all...] |
/packages/services/Car/evs/sampleDriver/ |
GlWrapper.cpp | 231 PIXEL_FORMAT_RGBX_8888, ISurfaceComposerClient::eOpaque);
|
/frameworks/base/libs/input/ |
SpriteController.cpp | 348 ISurfaceComposerClient::eHidden | 349 ISurfaceComposerClient::eCursorWindow);
|
/frameworks/native/services/surfaceflinger/tests/ |
Transaction_test.cpp | [all...] |
/frameworks/native/libs/gui/tests/ |
Surface_test.cpp | 538 sp<ISurfaceComposerClient> createConnection() override { return nullptr; } 539 sp<ISurfaceComposerClient> createScopedConnection( [all...] |
/frameworks/native/services/surfaceflinger/tests/fakehwc/ |
SFFakeHwc_test.cpp | [all...] |