Home
last modified time | relevance | path

Searched refs:outFrame (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DMotionSensor.java84 FrameValues outFrame = outPort.fetchAvailableFrame(null).asFrameValues(); in onProcess() local
86 outFrame.setValues(mValues); in onProcess()
88 outFrame.setTimestamp(System.currentTimeMillis() * 1000000L); in onProcess()
89 outPort.pushFrame(outFrame); in onProcess()
DNormFilter.java59 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
60 outFrame.setValue(norm); in onProcess()
61 outPort.pushFrame(outFrame); in onProcess()
DStatsFilter.java104 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
105 outFrame.setValue(mStats[MEAN_INDEX]); in onProcess()
106 outPort.pushFrame(outFrame); in onProcess()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
DMotionSensorWTime.java90 FrameValues outFrame = outPort.fetchAvailableFrame(null).asFrameValues(); in onProcess() local
103 outFrame.setValues(mAvgValues); in onProcess()
105 outFrame.setTimestamp(System.currentTimeMillis() * 1000000L); in onProcess()
106 outPort.pushFrame(outFrame); in onProcess()
DAverageFilter.java68 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
69 outFrame.setValue(output); in onProcess()
70 outPort.pushFrame(outFrame); in onProcess()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl92 int flags, out Rect outFrame, out Rect outOverscanInsets, in relayout() argument
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java192 int flags, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, in relayout() argument
199 outFrame, outOverscanInsets, outContentInsets, outVisibleInsets, in relayout()
DWindowManagerService.java2998 Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, in relayoutWindow() argument
3275 outFrame.set(win.mCompatFrame); in relayoutWindow()
3285 + "\nRelayout returning frame=" + outFrame in relayoutWindow()
3300 Slog.v(TAG, "Relayout complete " + win + ": outFrame=" + outFrame.toShortString()); in relayoutWindow()