/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
H A D | DisplaySurface.h | 31 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
|
H A D | RenderSurface.h | 40 MOCK_METHOD1(beginFrame, status_t(bool mustRecompose));
|
H A D | Output.h | 97 MOCK_METHOD0(beginFrame, void());
|
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
H A D | DisplaySurface.h | 44 virtual status_t beginFrame(bool mustRecompose) = 0;
|
H A D | RenderSurface.h | 78 virtual status_t beginFrame(bool mustRecompose) = 0;
|
H A D | Output.h | 285 virtual void beginFrame() = 0;
|
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
H A 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()
|
H A D | Output.cpp | 438 beginFrame(); in present() 912 void Output::beginFrame() { in beginFrame() function in android::compositionengine::impl::Output 934 mRenderSurface->beginFrame(mustRecompose); in beginFrame()
|
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/ |
H A D | FramebufferSurface.h | 47 virtual status_t beginFrame(bool mustRecompose);
|
H A D | VirtualDisplaySurface.h | 88 virtual status_t beginFrame(bool mustRecompose);
|
H A D | FramebufferSurface.cpp | 90 status_t FramebufferSurface::beginFrame(bool /*mustRecompose*/) { in beginFrame() function in android::FramebufferSurface
|
H A D | VirtualDisplaySurface.cpp | 127 status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) { in beginFrame() function in android::VirtualDisplaySurface
|
/aosp12/frameworks/base/libs/hwui/renderthread/ |
H A D | EglManager.h | 59 Frame beginFrame(EGLSurface surface);
|
H A D | EglManager.cpp | 495 Frame EglManager::beginFrame(EGLSurface surface) { in beginFrame() function in android::uirenderer::renderthread::EglManager
|
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
H A D | RenderSurface.h | 59 status_t beginFrame(bool mustRecompose) override;
|
H A D | Output.h | 90 void beginFrame() override;
|
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
H A 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()
|
H A 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()
|
/aosp12/frameworks/base/libs/hwui/pipeline/skia/ |
H A D | SkiaOpenGLPipeline.cpp | 69 return mEglManager.beginFrame(mEglSurface); in getFrame()
|
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/ |
H A D | CompositionTest.cpp | 356 EXPECT_CALL(*test->mDisplaySurface, beginFrame(true)).Times(1); in setupNonEmptyFrameCompositionCallExpectations() 360 EXPECT_CALL(*test->mDisplaySurface, beginFrame(false)).Times(1); in setupEmptyFrameCompositionCallExpectations()
|