/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 | 96 MOCK_METHOD0(beginFrame, void());
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | DisplaySurface.h | 44 virtual status_t beginFrame(bool mustRecompose) = 0;
|
D | RenderSurface.h | 78 virtual status_t beginFrame(bool mustRecompose) = 0;
|
D | Output.h | 282 virtual void beginFrame() = 0;
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | FramebufferSurface.h | 47 virtual status_t beginFrame(bool mustRecompose);
|
D | VirtualDisplaySurface.h | 88 virtual status_t beginFrame(bool mustRecompose);
|
D | FramebufferSurface.cpp | 90 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 | 59 Frame beginFrame(EGLSurface surface);
|
D | EglManager.cpp | 490 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | RenderSurface.cpp | 125 status_t RenderSurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::compositionengine::impl::RenderSurface 126 return mDisplaySurface->beginFrame(mustRecompose); in beginFrame()
|
D | Output.cpp | 432 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/ |
D | RenderSurface.h | 59 status_t beginFrame(bool mustRecompose) override;
|
D | Output.h | 89 void beginFrame() override;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | RenderSurfaceTest.cpp | 194 EXPECT_CALL(*mDisplaySurface, beginFrame(true)).WillOnce(Return(NO_ERROR)); in TEST_F() 196 EXPECT_EQ(NO_ERROR, mSurface.beginFrame(true)); in TEST_F()
|
D | OutputTest.cpp | 1765 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/ |
D | SkiaOpenGLPipeline.cpp | 69 return mEglManager.beginFrame(mEglSurface); in getFrame()
|
/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | CompositionTest.cpp | 354 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations() 358 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()
|