Home
last modified time | relevance | path

Searched refs:outFrame (Results 1 – 13 of 13) 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/services/tests/wmtests/src/com/android/server/wm/
DDisplayPolicyLayoutTests.java432 final Rect outFrame = new Rect(); in layoutHint_appWindow() local
440 false /* floatingStack */, outFrame, outContentInsets, outStableInsets, in layoutHint_appWindow()
443 assertThat(outFrame, is(mFrames.mUnrestricted)); in layoutHint_appWindow()
459 final Rect outFrame = new Rect(); in layoutHint_appWindowInTask() local
467 false /* floatingStack */, outFrame, outContentInsets, outStableInsets, in layoutHint_appWindowInTask()
470 assertThat(outFrame, is(taskBounds)); in layoutHint_appWindowInTask()
489 final Rect outFrame = new Rect(); in layoutHint_appWindowInTask_outsideContentFrame() local
497 true /* floatingStack */, outFrame, outContentInsets, outStableInsets, in layoutHint_appWindowInTask_outsideContentFrame()
500 assertThat(outFrame, is(taskBounds)); in layoutHint_appWindowInTask_outsideContentFrame()
/frameworks/av/media/libstagefright/
DStagefrightMetadataRetriever.cpp272 sp<IMemory>* outFrame, std::vector<sp<IMemory> >* outFrames) { in getFrameInternal() argument
313 if (outFrame != NULL) { in getFrameInternal()
314 *outFrame = FrameDecoder::getMetadataOnly(trackMeta, colorFormat); in getFrameInternal()
315 if (*outFrame != NULL) { in getFrameInternal()
354 if (outFrame != NULL) { in getFrameInternal()
355 *outFrame = decoder->extractFrame(); in getFrameInternal()
356 if (*outFrame != NULL) { in getFrameInternal()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl44 in int viewVisibility, in int layerStackId, out Rect outFrame, in addToDisplay() argument
101 int flags, long frameNumber, out Rect outFrame, out Rect outOverscanInsets, in relayout() argument
/frameworks/av/media/libstagefright/include/
DStagefrightMetadataRetriever.h74 sp<IMemory>* outFrame, std::vector<sp<IMemory> >* outFrames);
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java155 int viewVisibility, int displayId, Rect outFrame, Rect outContentInsets, in addToDisplay() argument
159 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId, outFrame, in addToDisplay()
187 Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, Rect outVisibleInsets, in relayout() argument
196 outFrame, outOverscanInsets, outContentInsets, outVisibleInsets, in relayout()
DDisplayPolicy.java1248 DisplayFrames displayFrames, boolean floatingStack, Rect outFrame, in getLayoutHintLw() argument
1280 outFrame.set(displayFrames.mUnrestricted); in getLayoutHintLw()
1282 outFrame.set(displayFrames.mRestricted); in getLayoutHintLw()
1308 outFrame.intersect(taskBounds); in getLayoutHintLw()
1310 InsetUtils.insetsBetweenFrames(outFrame, cf, outContentInsets); in getLayoutHintLw()
1311 InsetUtils.insetsBetweenFrames(outFrame, sf, outStableInsets); in getLayoutHintLw()
1312 outDisplayCutout.set(displayFrames.mDisplayCutout.calculateRelativeTo(outFrame) in getLayoutHintLw()
1317 outFrame.set(displayFrames.mUnrestricted); in getLayoutHintLw()
1319 outFrame.set(displayFrames.mStable); in getLayoutHintLw()
1322 outFrame.intersect(taskBounds); in getLayoutHintLw()
DWindowManagerService.java1220 LayoutParams attrs, int viewVisibility, int displayId, Rect outFrame, in addWindow() argument
1565 outFrame, outContentInsets, outStableInsets, outOutsets, outDisplayCutout)) { in addWindow()
1972 long frameNumber, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, in relayoutWindow() argument
2268 win.getCompatFrame(outFrame); in relayoutWindow()
2279 + "\nRelayout returning frame=" + outFrame in relayoutWindow()
2288 … Slog.v(TAG_WM, "Relayout complete " + win + ": outFrame=" + outFrame.toShortString()); in relayoutWindow()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DMagnificationController.java389 void getMagnifiedFrameInContentCoordsLocked(Rect outFrame) { in getMagnifiedFrameInContentCoordsLocked() argument
393 getMagnificationBounds(outFrame); in getMagnifiedFrameInContentCoordsLocked()
394 outFrame.offset((int) -offsetX, (int) -offsetY); in getMagnifiedFrameInContentCoordsLocked()
395 outFrame.scale(1.0f / scale); in getMagnifiedFrameInContentCoordsLocked()