Searched refs:mInputSurface (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | InputConsumerImpl.java | 45 final SurfaceControl mInputSurface; field in InputConsumerImpl 93 mInputSurface = mService.makeSurfaceBuilder(mService.mRoot.getDisplayContent(displayId) in InputConsumerImpl() 130 t.setPosition(mInputSurface, r.left, r.top); in layout() 131 t.setWindowCrop(mInputSurface, mTmpClipRect); in layout() 138 t.hide(mInputSurface); in hide() 142 t.show(mInputSurface); in show() 143 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show() 144 t.setRelativeLayer(mInputSurface, w.getSurfaceControl(), 1); in show() 148 t.show(mInputSurface); in show() 149 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show() [all …]
|
D | TaskPositioningController.java | 46 private SurfaceControl mInputSurface; field in TaskPositioningController 72 && mInputSurface != null) { in hideInputSurface() 73 t.hide(mInputSurface); in hideInputSurface() 82 if (mInputSurface == null) { in showInputSurface() 83 mInputSurface = mService.makeSurfaceBuilder(dc.getSession()) in showInputSurface() 95 t.show(mInputSurface); in showInputSurface() 96 t.setInputWindowInfo(mInputSurface, h); in showInputSurface() 97 t.setLayer(mInputSurface, Integer.MAX_VALUE); in showInputSurface() 104 t.setWindowCrop(mInputSurface, mTmpClipRect); in showInputSurface()
|
D | DragState.java | 121 SurfaceControl mInputSurface; field in DragState 150 if (mInputSurface != null) { in hideInputSurface() 151 mTransaction.hide(mInputSurface).apply(); in hideInputSurface() 156 if (mInputSurface == null) { in showInputSurface() 157 mInputSurface = mService.makeSurfaceBuilder( in showInputSurface() 169 mTransaction.show(mInputSurface); in showInputSurface() 170 mTransaction.setInputWindowInfo(mInputSurface, h); in showInputSurface() 171 mTransaction.setLayer(mInputSurface, Integer.MAX_VALUE); in showInputSurface() 174 mTransaction.setWindowCrop(mInputSurface, mTmpClipRect); in showInputSurface()
|
/frameworks/av/media/codec2/sfplugin/ |
D | CCodec.cpp | 1188 config->mInputSurface = surface; in setupInputSurface() 1291 if (config->mInputSurface) { in start() 1292 err2 = config->mInputSurface->start(); in start() 1377 if (config->mInputSurface) { in stop() 1378 config->mInputSurface->disconnect(); in stop() 1379 config->mInputSurface = nullptr; in stop() 1425 if (config->mInputSurface) { in initiateRelease() 1426 config->mInputSurface->disconnect(); in initiateRelease() 1427 config->mInputSurface = nullptr; in initiateRelease() 1594 … && (config->mDomain & Config::IS_ENCODER) && config->mInputSurface && config->mISConfig) { in signalSetParameters() [all …]
|
D | CCodecBufferChannel.cpp | 261 mInputSurface = surface; in setInputSurface() 262 return mInputSurface->connect(mComponent); in setInputSurface() 266 if (mInputSurface == nullptr) { in signalEndOfInputStream() 269 return mInputSurface->signalEndOfInputStream(); in signalEndOfInputStream() 896 if (mInputSurface) { in start() 1135 if (mInputSurface) { in requestInitialInputBuffers() 1207 if (mInputSurface != nullptr) { in stop() 1208 mInputSurface.reset(); in stop() 1258 if (mInputSurface) { in onInputBufferDone() 1304 if (mInputSurface == nullptr && (work->worklets.size() != 1u in handleWork() [all …]
|
D | CCodecBufferChannel.h | 270 std::shared_ptr<InputSurfaceWrapper> mInputSurface; variable
|
D | CCodecConfig.h | 122 std::shared_ptr<InputSurfaceWrapper> mInputSurface; member
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
D | RecordingService.java | 86 private Surface mInputSurface; field in RecordingService 261 mInputSurface = mMediaRecorder.getSurface(); in startRecording() 268 mInputSurface, in startRecording() 396 mInputSurface.release(); in stopRecording()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
D | Camera2ReprocessCaptureTest.java | 89 private Surface mInputSurface; field in Camera2ReprocessCaptureTest 906 mInputSurface = mSession.getInputSurface(); in setupReprocessableSession() 907 mImageWriter = ImageWriter.newInstance(mInputSurface, in setupReprocessableSession() 918 mInputSurface = null; in closeReprossibleSession()
|