Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DInputConsumerImpl.java45 final SurfaceControl mInputSurface; field in InputConsumerImpl
92mInputSurface = mService.makeSurfaceBuilder(mService.mRoot.getDisplayContent(displayId).getSession… in InputConsumerImpl()
131 t.setPosition(mInputSurface, r.left, r.top); in layout()
132 t.setWindowCrop(mInputSurface, mTmpClipRect); in layout()
139 t.hide(mInputSurface); in hide()
143 t.show(mInputSurface); in show()
144 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show()
145 t.setRelativeLayer(mInputSurface, w.getSurfaceControl(), 1); in show()
149 t.show(mInputSurface); in show()
150 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.java122 SurfaceControl mInputSurface; field in DragState
151 if (mInputSurface == null) { in showInputSurface()
152 mInputSurface = mService.makeSurfaceBuilder( in showInputSurface()
166 mTransaction.show(mInputSurface); in showInputSurface()
167 mTransaction.setInputWindowInfo(mInputSurface, h); in showInputSurface()
168 mTransaction.setLayer(mInputSurface, Integer.MAX_VALUE); in showInputSurface()
171 mTransaction.setWindowCrop(mInputSurface, mTmpClipRect); in showInputSurface()
235 if (mInputSurface != null) { in closeLocked()
236 mTransaction.remove(mInputSurface).apply(); in closeLocked()
237 mInputSurface = null; in closeLocked()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
DScreenMediaRecorder.java75 private Surface mInputSurface; field in ScreenMediaRecorder
153 mInputSurface = mMediaRecorder.getSurface(); in prepare()
160 mInputSurface, in prepare()
194 mInputSurface.release(); in end()
/frameworks/av/media/codec2/sfplugin/
DCCodec.cpp1220 config->mInputSurface = surface; in setupInputSurface()
1325 if (config->mInputSurface) { in start()
1326 err2 = config->mInputSurface->start(); in start()
1413 if (config->mInputSurface) { in stop()
1414 config->mInputSurface->disconnect(); in stop()
1415 config->mInputSurface = nullptr; in stop()
1462 if (config->mInputSurface) { in initiateRelease()
1463 config->mInputSurface->disconnect(); in initiateRelease()
1464 config->mInputSurface = nullptr; in initiateRelease()
1641 && config->mInputSurface && config->mISConfig) { in signalSetParameters()
[all …]
DCCodecBufferChannel.cpp180 mInputSurface = surface; in setInputSurface()
181 return mInputSurface->connect(mComponent); in setInputSurface()
185 if (mInputSurface == nullptr) { in signalEndOfInputStream()
188 return mInputSurface->signalEndOfInputStream(); in signalEndOfInputStream()
1005 if (mInputSurface) { in start()
1253 if (mInputSurface) { in requestInitialInputBuffers()
1362 if (mInputSurface != nullptr) { in stop()
1363 mInputSurface.reset(); in stop()
1443 if (mInputSurface) { in onInputBufferDone()
1494 if (mInputSurface == nullptr && (work->worklets.size() != 1u in handleWork()
[all …]
DCCodecBufferChannel.h303 std::shared_ptr<InputSurfaceWrapper> mInputSurface; variable
DCCodecConfig.h124 std::shared_ptr<InputSurfaceWrapper> mInputSurface; member
/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()