Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplay.cpp407 void Display::setExpensiveRenderingExpected(bool enabled) { in setExpensiveRenderingExpected() function in android::compositionengine::impl::Display
408 Output::setExpensiveRenderingExpected(enabled); in setExpensiveRenderingExpected()
411 mPowerAdvisor->setExpensiveRenderingExpected(mId, enabled); in setExpensiveRenderingExpected()
DOutput.cpp1185 setExpensiveRenderingExpected(false); in composeSurfaces()
1245 setExpensiveRenderingExpected(false); in composeSurfaces()
1267 setExpensiveRenderingExpected(true); in composeSurfaces()
1428 void Output::setExpensiveRenderingExpected(bool) { in setExpensiveRenderingExpected() function in android::compositionengine::impl::Output
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/
DMockPowerAdvisor.h32 MOCK_METHOD(void, setExpensiveRenderingExpected, (DisplayId displayId, bool expected),
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DMockPowerAdvisor.h34 MOCK_METHOD(void, setExpensiveRenderingExpected, (DisplayId displayId, bool expected),
DDisplayTest.cpp934 EXPECT_CALL(mPowerAdvisor, setExpensiveRenderingExpected(DEFAULT_DISPLAY_ID, true)).Times(1); in TEST_F()
935 mDisplay->setExpensiveRenderingExpected(true); in TEST_F()
937 EXPECT_CALL(mPowerAdvisor, setExpensiveRenderingExpected(DEFAULT_DISPLAY_ID, false)).Times(1); in TEST_F()
938 mDisplay->setExpensiveRenderingExpected(false); in TEST_F()
955 EXPECT_CALL(mPowerAdvisor, setExpensiveRenderingExpected(DEFAULT_DISPLAY_ID, false)); in TEST_F()
DOutputTest.cpp3362 MOCK_METHOD1(setExpensiveRenderingExpected, void(bool));
3478 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(false)); in TEST_F()
3492 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(false)); in TEST_F()
3662 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(false)); in TEST_F()
4231 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(true)); in TEST_F()
4274 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(true)); in TEST_F()
4289 EXPECT_CALL(mOutput, setExpensiveRenderingExpected(true)).Times(0); in TEST_F()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplay.h63 void setExpensiveRenderingExpected(bool) override;
DOutput.h142 void setExpensiveRenderingExpected(bool enabled) override;
/frameworks/native/services/surfaceflinger/DisplayHardware/
DPowerAdvisor.h48 virtual void setExpensiveRenderingExpected(DisplayId displayId, bool expected) = 0;
126 void setExpensiveRenderingExpected(DisplayId displayId, bool expected) override;
DPowerAdvisor.cpp120 void PowerAdvisor::setExpensiveRenderingExpected(DisplayId displayId, bool expected) { in setExpensiveRenderingExpected() function in android::Hwc2::impl::PowerAdvisor
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DOutput.h131 MOCK_METHOD1(setExpensiveRenderingExpected, void(bool));
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DOutput.h314 virtual void setExpensiveRenderingExpected(bool enabled) = 0;
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp1299 mPowerAdvisor->setExpensiveRenderingExpected(display->getId(), kDisable); in disableExpensiveRendering()