Home
last modified time | relevance | path

Searched refs:needsAnotherUpdate (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/
H A DCompositionEngine.cpp83 bool CompositionEngine::needsAnotherUpdate() const { in needsAnotherUpdate() function in android::compositionengine::impl::CompositionEngine
134 bool needsAnotherUpdate = false; in preComposition() local
140 needsAnotherUpdate = true; in preComposition()
144 mNeedsAnotherUpdate = needsAnotherUpdate; in preComposition()
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
H A DCompositionEngine.h48 MOCK_CONST_METHOD0(needsAnotherUpdate, bool());
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
H A DCompositionEngine.h63 virtual bool needsAnotherUpdate() const = 0;
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
H A DCompositionEngine.h42 bool needsAnotherUpdate() const override;
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
H A DCompositionEngineTest.cpp253 EXPECT_FALSE(mEngine.needsAnotherUpdate()); in TEST_F()
267 EXPECT_TRUE(mEngine.needsAnotherUpdate()); in TEST_F()
/aosp12/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp2166 if (mCompositionEngine->needsAnotherUpdate()) { in onMessageRefresh()