/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | DisplaySurface.h | 30 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
|
D | RenderSurface.h | 40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
|
D | Output.h | 92 MOCK_METHOD0(beginFrame, void());
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | DisplaySurface.h | 43 virtual status_t beginFrame(bool mustRecompose) = 0;
|
D | RenderSurface.h | 77 virtual status_t beginFrame(bool mustRecompose) = 0;
|
D | Output.h | 266 virtual void beginFrame() = 0;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | RenderSurface.cpp | 123 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface 124 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
|
D | Output.cpp | 314 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/ |
D | FramebufferSurface.h | 46 virtual status_t beginFrame(bool mustRecompose);
|
D | VirtualDisplaySurface.h | 88 virtual status_t beginFrame(bool mustRecompose);
|
D | FramebufferSurface.cpp | 93 status_t FramebufferSurface::beginFrame(bool /*mustRecompose*/) { in beginFrame() function in android::FramebufferSurface
|
D | VirtualDisplaySurface.cpp | 127 status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::VirtualDisplaySurface
|
/frameworks/base/libs/hwui/renderthread/ |
D | EglManager.h | 60 Frame beginFrame(EGLSurface surface);
|
D | EglManager.cpp | 432 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
D | RenderSurface.h | 55 status_t beginFrame(bool mustRecompose) override;
|
D | Output.h | 82 void beginFrame() override;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | RenderSurfaceTest.cpp | 179 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F() 181 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
|
D | OutputTest.cpp | 1549 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/ |
D | SkiaOpenGLPipeline.cpp | 69 return mEglManager.beginFrame(mEglSurface); in getFrame()
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | CompositionTest.cpp | 363 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations() 367 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()
|