/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | PowerAdvisor.h | 40 virtual void setExpensiveRenderingExpected(DisplayId displayId, bool expected) = 0; 64 void setExpensiveRenderingExpected(DisplayId displayId, bool expected) override;
|
D | PowerAdvisor.cpp | 88 void PowerAdvisor::setExpensiveRenderingExpected(DisplayId displayId, bool expected) { in setExpensiveRenderingExpected() function in android::Hwc2::impl::PowerAdvisor
|
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/ |
D | MockPowerAdvisor.h | 32 MOCK_METHOD2(setExpensiveRenderingExpected, void(DisplayId displayId, bool expected));
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | MockPowerAdvisor.h | 34 MOCK_METHOD2(setExpensiveRenderingExpected, void(DisplayId displayId, bool expected));
|
D | DisplayTest.cpp | 877 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()
|
D | OutputTest.cpp | 2999 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/ |
D | Display.cpp | 354 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()
|
D | Output.cpp | 1045 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/ |
D | Display.h | 56 void setExpensiveRenderingExpected(bool) override;
|
D | Output.h | 116 void setExpensiveRenderingExpected(bool enabled) override;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | Output.h | 119 MOCK_METHOD1(setExpensiveRenderingExpected, void(bool));
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | Output.h | 298 virtual void setExpensiveRenderingExpected(bool enabled) = 0;
|
/frameworks/native/services/surfaceflinger/ |
D | SurfaceFlinger.cpp | 1291 mPowerAdvisor.setExpensiveRenderingExpected(display->getId(), kDisable); in disableExpensiveRendering()
|