Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DInputConsumerImpl.java47 final SurfaceControl mInputSurface; field 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()
142 t.show(mInputSurface); in show()
143 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show()
144 t.setLayer(mInputSurface, layer); in show()
148 t.reparent(mInputSurface, wc.getSurfaceControl()); in reparent()
[all …]
H A 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()
H A 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()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
H A DScreenMediaRecorder.java77 private Surface mInputSurface; field in ScreenMediaRecorder
157 mInputSurface = mMediaRecorder.getSurface(); in prepare()
164 mInputSurface, in prepare()
267 mInputSurface.release(); in end()
/aosp12/frameworks/av/media/codec2/sfplugin/
H A DCCodec.cpp1607 config->mInputSurface = surface; in setupInputSurface()
1718 if (config->mInputSurface) { in start()
1805 if (config->mInputSurface) { in stop()
1806 config->mInputSurface->disconnect(); in stop()
1807 config->mInputSurface = nullptr; in stop()
1855 if (config->mInputSurface) { in initiateRelease()
1856 config->mInputSurface->disconnect(); in initiateRelease()
1857 config->mInputSurface = nullptr; in initiateRelease()
2086 if (config->mInputSurface == nullptr in signalSetParameters()
2167 if (config->mInputSurface) { in onInputBufferDone()
[all …]
H A DCCodecBufferChannel.cpp188 mInputSurface = surface; in setInputSurface()
189 return mInputSurface->connect(mComponent); in setInputSurface()
193 if (mInputSurface == nullptr) { in signalEndOfInputStream()
196 return mInputSurface->signalEndOfInputStream(); in signalEndOfInputStream()
1139 if (mInputSurface) { in start()
1407 if (mInputSurface) { in requestInitialInputBuffers()
1506 if (mInputSurface != nullptr) { in reset()
1507 mInputSurface.reset(); in reset()
1599 if (mInputSurface) { in onInputBufferDone()
1656 if (mInputSurface == nullptr && (work->worklets.size() != 1u in handleWork()
[all …]
H A DCCodecBufferChannel.h311 std::shared_ptr<InputSurfaceWrapper> mInputSurface; variable
H A DCCodecConfig.h126 std::shared_ptr<InputSurfaceWrapper> mInputSurface; member
H A 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()
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A 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()
/aosp12/frameworks/av/media/codec2/sfplugin/tests/
H A DCCodecConfig_test.cpp501 mConfig.mInputSurface = std::make_shared<InputSurfaceStub>(); in TEST_F()
532 mConfig.mInputSurface->setDataSpace(HAL_DATASPACE_BT2020_PQ); in TEST_F()