Home
last modified time | relevance | path

Searched refs:beginFrame (Results 1 – 20 of 20) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DDisplaySurface.h31 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
DRenderSurface.h40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
DOutput.h96 MOCK_METHOD0(beginFrame, void());
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplaySurface.h44 virtual status_t beginFrame(bool mustRecompose) = 0;
DRenderSurface.h78 virtual status_t beginFrame(bool mustRecompose) = 0;
DOutput.h282 virtual void beginFrame() = 0;
/frameworks/native/services/surfaceflinger/DisplayHardware/
DFramebufferSurface.h47 virtual status_t beginFrame(bool mustRecompose);
DVirtualDisplaySurface.h88 virtual status_t beginFrame(bool mustRecompose);
DFramebufferSurface.cpp90 status_t FramebufferSurface::beginFrame(bool /*mustRecompose*/) { in beginFrame() function in android::FramebufferSurface
DVirtualDisplaySurface.cpp127 status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::VirtualDisplaySurface
/frameworks/base/libs/hwui/renderthread/
DEglManager.h59 Frame beginFrame(EGLSurface surface);
DEglManager.cpp490 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DRenderSurface.cpp125 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface
126 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
DOutput.cpp432 beginFrame(); in present()
903 void Output::beginFrame() { in beginFrame() function in android::compositionengine::impl::Output
925 mRenderSurface->beginFrame(mustRecompose); in beginFrame()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DRenderSurface.h59 status_t beginFrame(bool mustRecompose) override;
DOutput.h89 void beginFrame() override;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DRenderSurfaceTest.cpp194 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F()
196 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
DOutputTest.cpp1765 MOCK_METHOD0(beginFrame, void());
1785 EXPECT_CALL(mOutput, beginFrame()); in TEST_F()
2572 EXPECT_CALL(*getInstance()->mRenderSurface, beginFrame(mustRecompose)); in thenExpectRenderSurfaceBeginFrameCall()
2579 getInstance()->mOutput.beginFrame(); in execute()
/frameworks/base/libs/hwui/pipeline/skia/
DSkiaOpenGLPipeline.cpp69 return mEglManager.beginFrame(mEglSurface); in getFrame()
/frameworks/native/services/surfaceflinger/tests/unittests/
DCompositionTest.cpp354 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations()
358 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()