/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | Display.cpp | 407 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()
|
D | Output.cpp | 1185 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/ |
D | MockPowerAdvisor.h | 32 MOCK_METHOD(void, setExpensiveRenderingExpected, (DisplayId displayId, bool expected),
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | MockPowerAdvisor.h | 34 MOCK_METHOD(void, setExpensiveRenderingExpected, (DisplayId displayId, bool expected),
|
D | DisplayTest.cpp | 934 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()
|
D | OutputTest.cpp | 3362 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/ |
D | Display.h | 63 void setExpensiveRenderingExpected(bool) override;
|
D | Output.h | 142 void setExpensiveRenderingExpected(bool enabled) override;
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | PowerAdvisor.h | 48 virtual void setExpensiveRenderingExpected(DisplayId displayId, bool expected) = 0; 126 void setExpensiveRenderingExpected(DisplayId displayId, bool expected) override;
|
D | PowerAdvisor.cpp | 120 void PowerAdvisor::setExpensiveRenderingExpected(DisplayId displayId, bool expected) { in setExpensiveRenderingExpected() function in android::Hwc2::impl::PowerAdvisor
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | Output.h | 131 MOCK_METHOD1(setExpensiveRenderingExpected, void(bool));
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | Output.h | 314 virtual void setExpensiveRenderingExpected(bool enabled) = 0;
|
/frameworks/native/services/surfaceflinger/ |
D | SurfaceFlinger.cpp | 1299 mPowerAdvisor->setExpensiveRenderingExpected(display->getId(), kDisable); in disableExpensiveRendering()
|