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.h30 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
DRenderSurface.h40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
DOutput.h92 MOCK_METHOD0(beginFrame, void());
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DDisplaySurface.h43 virtual status_t beginFrame(bool mustRecompose) = 0;
DRenderSurface.h77 virtual status_t beginFrame(bool mustRecompose) = 0;
DOutput.h266 virtual void beginFrame() = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DRenderSurface.cpp123 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface
124 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
DOutput.cpp314 beginFrame(); in present()
723 void Output::beginFrame() { in beginFrame() function in android::compositionengine::impl::Output
745 mRenderSurface->beginFrame(mustRecompose); in beginFrame()
/frameworks/native/services/surfaceflinger/DisplayHardware/
DFramebufferSurface.h46 virtual status_t beginFrame(bool mustRecompose);
DVirtualDisplaySurface.h88 virtual status_t beginFrame(bool mustRecompose);
DFramebufferSurface.cpp93 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.h60 Frame beginFrame(EGLSurface surface);
DEglManager.cpp432 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DRenderSurface.h55 status_t beginFrame(bool mustRecompose) override;
DOutput.h82 void beginFrame() override;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DRenderSurfaceTest.cpp179 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F()
181 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
DOutputTest.cpp1549 MOCK_METHOD0(beginFrame, void());
1566 EXPECT_CALL(mOutput, beginFrame()); in TEST_F()
2352 EXPECT_CALL(*getInstance()->mRenderSurface, beginFrame(mustRecompose)); in thenExpectRenderSurfaceBeginFrameCall()
2359 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.cpp363 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations()
367 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()