/frameworks/native/services/surfaceflinger/Scheduler/src/ |
D | FrameTargeter.cpp | 59 void FrameTargeter::beginFrame(const BeginFrameArgs& args, const IVsyncSource& vsyncSource) { in beginFrame() function in android::scheduler::FrameTargeter 60 return beginFrame(args, vsyncSource, &FrameTargeter::isFencePending); in beginFrame() 63 void FrameTargeter::beginFrame(const BeginFrameArgs& args, const IVsyncSource& vsyncSource, in beginFrame() function in android::scheduler::FrameTargeter
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | DisplaySurface.h | 31 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
|
D | RenderSurface.h | 40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
|
D | Output.h | 103 MOCK_METHOD0(beginFrame, void());
|
/frameworks/native/services/surfaceflinger/Scheduler/include/scheduler/ |
D | FrameTargeter.h | 154 void beginFrame(const BeginFrameArgs&, const IVsyncSource&); 171 void beginFrame(const BeginFrameArgs&, const IVsyncSource&, IsFencePendingFuncPtr);
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | DisplaySurface.h | 46 virtual status_t beginFrame(bool mustRecompose) = 0;
|
D | RenderSurface.h | 78 virtual status_t beginFrame(bool mustRecompose) = 0;
|
D | Output.h | 298 virtual void beginFrame() = 0;
|
/frameworks/native/services/surfaceflinger/ |
D | ScreenCaptureRenderSurface.h | 64 status_t beginFrame(bool /* mustRecompose */) override { return OK; } in beginFrame() function
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | FramebufferSurface.h | 47 virtual status_t beginFrame(bool mustRecompose);
|
D | VirtualDisplaySurface.h | 85 virtual status_t beginFrame(bool mustRecompose);
|
D | FramebufferSurface.cpp | 86 status_t FramebufferSurface::beginFrame(bool /*mustRecompose*/) { in beginFrame() function in android::FramebufferSurface
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | DisplayTest.cpp | 640 EXPECT_CALL(*renderSurface, beginFrame(_)).Times(1); in TEST_F() 643 mDisplay->beginFrame(); in TEST_F() 961 EXPECT_CALL(*renderSurface, beginFrame(false)); in TEST_F() 969 gpuDisplay->beginFrame(); in TEST_F() 982 EXPECT_CALL(*renderSurface, beginFrame(false)); in TEST_F() 990 gpuDisplay->beginFrame(); in TEST_F() 1003 EXPECT_CALL(*renderSurface, beginFrame(true)); in TEST_F() 1011 gpuDisplay->beginFrame(); in TEST_F()
|
D | RenderSurfaceTest.cpp | 195 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F() 197 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
|
/frameworks/base/libs/hwui/renderthread/ |
D | EglManager.h | 60 Frame beginFrame(EGLSurface surface);
|
D | EglManager.cpp | 587 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | RenderSurface.cpp | 126 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface 127 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
|
D | Display.cpp | 224 void Display::beginFrame() { in beginFrame() function in android::compositionengine::impl::Display 225 Output::beginFrame(); in beginFrame()
|
D | Output.cpp | 465 beginFrame(); in present() 1054 void Output::beginFrame() { in beginFrame() function in android::compositionengine::impl::Output 1076 mRenderSurface->beginFrame(mMustRecompose); in beginFrame()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
D | RenderSurface.h | 59 status_t beginFrame(bool mustRecompose) override;
|
D | Display.h | 56 void beginFrame() override;
|
D | Output.h | 99 void beginFrame() override;
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | SkiaOpenGLPipeline.cpp | 113 return mEglManager.beginFrame(mEglSurface); in getFrame()
|
/frameworks/native/services/surfaceflinger/Scheduler/tests/ |
D | FrameTargeterTest.cpp | 76 testPtr->mTargeter.beginFrame(args, in Frame()
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | Scheduler.cpp | 210 pacesetterPtr->targeterPtr->beginFrame(beginFrameArgs, *pacesetterPtr->schedulePtr); in onFrameSignal() 229 targeter.beginFrame(followerBeginFrameArgs, *display.schedulePtr); in onFrameSignal()
|