Home
last modified time | relevance | path

Searched refs:mInputSurface (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DInputConsumerImpl.java47 final SurfaceControl mInputSurface; field in InputConsumerImpl
85mInputSurface = mService.makeSurfaceBuilder(mService.mRoot.getDisplayContent(displayId).getSession… in InputConsumerImpl()
124 t.setPosition(mInputSurface, r.left, r.top); in layout()
125 t.setWindowCrop(mInputSurface, mTmpClipRect); in layout()
132 t.hide(mInputSurface); in hide()
136 t.show(mInputSurface); in show()
137 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show()
138 t.setRelativeLayer(mInputSurface, w.getSurfaceControl(), 1); in show()
142 t.show(mInputSurface); in show()
143 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show()
[all …]
DTaskPositioningController.java46 private SurfaceControl mInputSurface; field in TaskPositioningController
75 && mInputSurface != null) { in hideInputSurface()
76 mTransaction.hide(mInputSurface); in hideInputSurface()
86 if (mInputSurface == null) { in showInputSurface()
87 mInputSurface = mService.makeSurfaceBuilder(dc.getSession()) in showInputSurface()
101 mTransaction.show(mInputSurface); in showInputSurface()
102 mTransaction.setInputWindowInfo(mInputSurface, h); in showInputSurface()
103 mTransaction.setLayer(mInputSurface, Integer.MAX_VALUE); in showInputSurface()
110 mTransaction.setWindowCrop(mInputSurface, mTmpClipRect); in showInputSurface()
DDragState.java133 SurfaceControl mInputSurface; field in DragState
162 if (mInputSurface == null) { in showInputSurface()
163 mInputSurface = mService.makeSurfaceBuilder( in showInputSurface()
177 mTransaction.show(mInputSurface); in showInputSurface()
178 mTransaction.setInputWindowInfo(mInputSurface, h); in showInputSurface()
179 mTransaction.setLayer(mInputSurface, Integer.MAX_VALUE); in showInputSurface()
182 mTransaction.setWindowCrop(mInputSurface, mTmpClipRect); in showInputSurface()
247 if (mInputSurface != null) { in closeLocked()
248 mTransaction.remove(mInputSurface).apply(); in closeLocked()
249 mInputSurface = null; in closeLocked()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
DScreenMediaRecorder.java77 private Surface mInputSurface; field in ScreenMediaRecorder
157 mInputSurface = mMediaRecorder.getSurface(); in prepare()
164 mInputSurface, in prepare()
281 mInputSurface.release(); in end()
/frameworks/av/media/codec2/sfplugin/
DCCodec.cpp1586 config->mInputSurface = surface; in setupInputSurface()
1697 if (config->mInputSurface) { in start()
1698 err2 = config->mInputSurface->start(); in start()
1699 config->mInputSurfaceDataspace = config->mInputSurface->getDataspace(); in start()
1784 if (config->mInputSurface) { in stop()
1785 config->mInputSurface->disconnect(); in stop()
1786 config->mInputSurface = nullptr; in stop()
1834 if (config->mInputSurface) { in initiateRelease()
1835 config->mInputSurface->disconnect(); in initiateRelease()
1836 config->mInputSurface = nullptr; in initiateRelease()
[all …]
DCCodecBufferChannel.cpp186 mInputSurface = surface; in setInputSurface()
187 return mInputSurface->connect(mComponent); in setInputSurface()
191 if (mInputSurface == nullptr) { in signalEndOfInputStream()
194 return mInputSurface->signalEndOfInputStream(); in signalEndOfInputStream()
1136 if (mInputSurface) { in start()
1404 if (mInputSurface) { in requestInitialInputBuffers()
1493 if (mInputSurface != nullptr) { in reset()
1494 mInputSurface.reset(); in reset()
1587 if (mInputSurface) { in onInputBufferDone()
1638 if (mInputSurface == nullptr && (work->worklets.size() != 1u in handleWork()
[all …]
DCCodecBufferChannel.h310 std::shared_ptr<InputSurfaceWrapper> mInputSurface; variable
DCCodecConfig.h126 std::shared_ptr<InputSurfaceWrapper> mInputSurface; member
DCCodecConfig.cpp1156 if (mInputSurface in updateConfiguration()
1158 && mInputSurfaceDataspace != mInputSurface->getDataspace()) { in updateConfiguration()
1160 mInputSurfaceDataspace = mInputSurface->getDataspace(); in updateConfiguration()
1438 if (mInputSurface) { in getFormatForDomain()
1439 android_dataspace dataspace = mInputSurface->getDataspace(); in getFormatForDomain()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
DCamera2ReprocessCaptureTest.java89 private Surface mInputSurface; field in Camera2ReprocessCaptureTest
906 mInputSurface = mSession.getInputSurface(); in setupReprocessableSession()
907 mImageWriter = ImageWriter.newInstance(mInputSurface, in setupReprocessableSession()
918 mInputSurface = null; in closeReprossibleSession()
/frameworks/av/media/codec2/sfplugin/tests/
DCCodecConfig_test.cpp501 mConfig.mInputSurface = std::make_shared<InputSurfaceStub>(); in TEST_F()
532 mConfig.mInputSurface->setDataSpace(HAL_DATASPACE_BT2020_PQ); in TEST_F()