/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/ |
H A D | HandwritingEventReceiverSurface.java | 39 private final SurfaceControl mInputSurface; field in HandwritingEventReceiverSurface 45 mInputSurface = sc; in HandwritingEventReceiverSurface() 67 t.setInputWindowInfo(mInputSurface, mWindowHandle); in HandwritingEventReceiverSurface() 68 t.setLayer(mInputSurface, InputManagerService.INPUT_OVERLAY_LAYER_HANDWRITING_SURFACE); in HandwritingEventReceiverSurface() 69 t.setPosition(mInputSurface, 0, 0); in HandwritingEventReceiverSurface() 70 t.setCrop(mInputSurface, null /* crop to parent surface */); in HandwritingEventReceiverSurface() 71 t.show(mInputSurface); in HandwritingEventReceiverSurface() 83 .setInputWindowInfo(mInputSurface, mWindowHandle) in startIntercepting() 94 t.remove(mInputSurface); in remove() 103 return mInputSurface; in getSurface()
|
/aosp14/frameworks/base/services/core/java/com/android/server/input/ |
H A D | GestureMonitorSpyWindow.java | 45 final SurfaceControl mInputSurface; field in GestureMonitorSpyWindow 51 mInputSurface = sc; in GestureMonitorSpyWindow() 69 t.setInputWindowInfo(mInputSurface, mWindowHandle); in GestureMonitorSpyWindow() 70 t.setLayer(mInputSurface, InputManagerService.INPUT_OVERLAY_LAYER_GESTURE_MONITOR); in GestureMonitorSpyWindow() 71 t.setPosition(mInputSurface, 0, 0); in GestureMonitorSpyWindow() 72 t.setCrop(mInputSurface, null /* crop to parent surface */); in GestureMonitorSpyWindow() 73 t.show(mInputSurface); in GestureMonitorSpyWindow() 80 t.hide(mInputSurface); in remove() 81 t.remove(mInputSurface); in remove()
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | InputConsumerImpl.java | 47 final SurfaceControl mInputSurface; field in InputConsumerImpl 79 mInputSurface = mService.makeSurfaceBuilder( in InputConsumerImpl() 119 t.setPosition(mInputSurface, r.left, r.top); in layout() 120 t.setWindowCrop(mInputSurface, mTmpClipRect); in layout() 127 t.hide(mInputSurface); in hide() 131 t.show(mInputSurface); in show() 132 t.setInputWindowInfo(mInputSurface, mWindowHandle); in show() 137 t.show(mInputSurface); in show() 139 t.setLayer(mInputSurface, layer); in show() 143 t.reparent(mInputSurface, wc.getSurfaceControl()); in reparent() [all …]
|
H A D | TaskPositioningController.java | 40 private SurfaceControl mInputSurface; field in TaskPositioningController 64 && mInputSurface != null) { in hideInputSurface() 65 mTransaction.hide(mInputSurface).apply(); in hideInputSurface() 77 if (mInputSurface == null) { in showInputSurface() 78 mInputSurface = mService.makeSurfaceBuilder(dc.getSession()) in showInputSurface() 99 mTransaction.show(mInputSurface) in showInputSurface() 100 .setInputWindowInfo(mInputSurface, h) in showInputSurface() 101 .setLayer(mInputSurface, Integer.MAX_VALUE) in showInputSurface() 102 .setPosition(mInputSurface, 0, 0) in showInputSurface() 103 .setCrop(mInputSurface, mTmpClipRect) in showInputSurface()
|
H A D | DragState.java | 139 SurfaceControl mInputSurface; field in DragState 171 if (mInputSurface == null) { in showInputSurface() 172 mInputSurface = mService.makeSurfaceBuilder(mDisplayContent.getSession()) in showInputSurface() 189 mTransaction.show(mInputSurface) in showInputSurface() 190 .setInputWindowInfo(mInputSurface, h) in showInputSurface() 191 .setLayer(mInputSurface, Integer.MAX_VALUE) in showInputSurface() 192 .setCrop(mInputSurface, mTmpClipRect); in showInputSurface() 264 if (mInputSurface != null) { in closeLocked() 265 mTransaction.remove(mInputSurface).apply(); in closeLocked() 266 mInputSurface = null; in closeLocked()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
H A D | ScreenMediaRecorder.java | 83 private Surface mInputSurface; field in ScreenMediaRecorder 171 mInputSurface = mMediaRecorder.getSurface(); in prepare() 178 mInputSurface, in prepare() 290 closer.register(mInputSurface::release); in end()
|
/aosp14/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
H A 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()
|