Home
last modified time | relevance | path

Searched refs:setExpensiveRenderingExpected (Results 1 – 13 of 13) sorted by relevance

/frameworks/native/services/surfaceflinger/DisplayHardware/
DPowerAdvisor.h40 virtual void setExpensiveRenderingExpected(DisplayId displayId, bool expected) = 0;
64 void setExpensiveRenderingExpected(DisplayId displayId, bool expected) override;
DPowerAdvisor.cpp88 void PowerAdvisor::setExpensiveRenderingExpected(DisplayId displayId, bool expected) { in setExpensiveRenderingExpected() function in android::Hwc2::impl::PowerAdvisor
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/
DMockPowerAdvisor.h32 MOCK_METHOD2(setExpensiveRenderingExpected, void(DisplayId displayId, bool expected));
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DMockPowerAdvisor.h34 MOCK_METHOD2(setExpensiveRenderingExpected, void(DisplayId displayId, bool expected));
DDisplayTest.cpp877 EXPECT_CALL(mPowerAdvisor, setExpensiveRenderingExpected(DEFAULT_DISPLAY_ID, true)).Times(1); in TEST_F()
878 mDisplay->setExpensiveRenderingExpected(true); in TEST_F()
880 EXPECT_CALL(mPowerAdvisor, setExpensiveRenderingExpected(DEFAULT_DISPLAY_ID, false)).Times(1); in TEST_F()
881 mDisplay->setExpensiveRenderingExpected(false); in TEST_F()
898 EXPECT_CALL(mPowerAdvisor, setExpensiveRenderingExpected(DEFAULT_DISPLAY_ID, false)); in TEST_F()
DOutputTest.cpp2999 MOCK_METHOD1(setExpensiveRenderingExpected, void(bool));
3099 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(false)); in TEST_F()
3113 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(false)); in TEST_F()
3263 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(false)); in TEST_F()
3599 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(true)); in TEST_F()
3633 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(true)); in TEST_F()
3643 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(true)).Times(0); in TEST_F()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplay.cpp354 void Display::setExpensiveRenderingExpected(bool enabled) { in setExpensiveRenderingExpected() function in android::compositionengine::impl::Display
355 Output::setExpensiveRenderingExpected(enabled); in setExpensiveRenderingExpected()
358 mPowerAdvisor->setExpensiveRenderingExpected(mId, enabled); in setExpensiveRenderingExpected()
DOutput.cpp1045 setExpensiveRenderingExpected(false); in composeSurfaces()
1089 setExpensiveRenderingExpected(false); in composeSurfaces()
1105 setExpensiveRenderingExpected(true); in composeSurfaces()
1257 void Output::setExpensiveRenderingExpected(bool) { in setExpensiveRenderingExpected() function in android::compositionengine::impl::Output
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplay.h56 void setExpensiveRenderingExpected(bool) override;
DOutput.h116 void setExpensiveRenderingExpected(bool enabled) override;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DOutput.h119 MOCK_METHOD1(setExpensiveRenderingExpected, void(bool));
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DOutput.h298 virtual void setExpensiveRenderingExpected(bool enabled) = 0;
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp1291 mPowerAdvisor.setExpensiveRenderingExpected(display->getId(), kDisable); in disableExpensiveRendering()