Home
last modified time | relevance | path

Searched refs:mirrorSurface (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/libs/gui/
DISurfaceComposerClient.cpp88 status_t mirrorSurface(const sp<IBinder>& mirrorFromHandle, sp<IBinder>* outHandle) override { in mirrorSurface() function in android::BpSurfaceComposerClient
89 return callRemote<decltype(&ISurfaceComposerClient::mirrorSurface)>(Tag::MIRROR_SURFACE, in mirrorSurface()
119 return callLocal(data, reply, &ISurfaceComposerClient::mirrorSurface); in onTransact()
DSurfaceComposerClient.cpp1669 sp<SurfaceControl> SurfaceComposerClient::mirrorSurface(SurfaceControl* mirrorFromSurface) { in mirrorSurface() function in android::SurfaceComposerClient
1676 status_t err = mClient->mirrorSurface(mirrorFromHandle, &handle); in mirrorSurface()
/frameworks/native/services/surfaceflinger/tests/
DMirrorLayer_test.cpp66 sp<SurfaceControl> mirrorLayer = mClient->mirrorSurface(mChildLayer.get()); in TEST_F()
158 sp<SurfaceControl> mirrorLayer = mClient->mirrorSurface(mChildLayer.get()); in TEST_F()
/frameworks/native/services/surfaceflinger/
DClient.h67 status_t mirrorSurface(const sp<IBinder>& mirrorFromHandle, sp<IBinder>* handle);
DClient.cpp109 status_t Client::mirrorSurface(const sp<IBinder>& mirrorFromHandle, sp<IBinder>* outHandle) { in mirrorSurface() function in android::Client
/frameworks/native/libs/gui/include/gui/
DISurfaceComposerClient.h82 virtual status_t mirrorSurface(const sp<IBinder>& mirrorFromHandle, sp<IBinder>* outHandle) = 0;
DSurfaceComposerClient.h294 sp<SurfaceControl> mirrorSurface(SurfaceControl* mirrorFromSurface);
/frameworks/base/core/java/android/view/
DSurfaceControl.java2225 public static SurfaceControl mirrorSurface(SurfaceControl mirrorOf) { in mirrorSurface() method in SurfaceControl
/frameworks/base/core/jni/
Dandroid_view_SurfaceControl.cpp1459 sp<SurfaceControl> surface = client->mirrorSurface(mirrorOf); in nativeMirrorSurface()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java8245 final SurfaceControl mirror = SurfaceControl.mirrorSurface(displaySc); in mirrorDisplay()