Home
last modified time | relevance | path

Searched refs:setVsyncEnabled (Results 1 – 17 of 17) sorted by relevance

/frameworks/native/services/surfaceflinger/tests/unittests/
DSurfaceFlinger_HotplugTest.cpp72 setVsyncEnabled(ExternalDisplay::HWC_DISPLAY_ID, IComposerClient::Vsync::DISABLE)) in TEST_F()
116 setVsyncEnabled(ExternalDisplay::HWC_DISPLAY_ID, IComposerClient::Vsync::DISABLE)) in TEST_F()
DSurfaceFlinger_DisplayTransactionCommitTest.cpp187 setVsyncEnabled(Case::Display::HWC_DISPLAY_ID, IComposerClient::Vsync::DISABLE)) in processesHotplugConnectCommon()
314 setVsyncEnabled(Case::Display::HWC_DISPLAY_ID, in TEST_F()
388 setVsyncEnabled(Case::Display::HWC_DISPLAY_ID, in TEST_F()
DDisplayModeControllerTest.cpp66 setVsyncEnabled(kHwcDisplayId, hal::IComposerClient::Vsync::DISABLE)); in SetUp()
DHWComposerTest.cpp83 EXPECT_CALL(*mHal, setVsyncEnabled(hwcDisplayId, Hwc2::IComposerClient::Vsync::DISABLE)); in expectHotplugConnect()
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DMockHWComposer.h97 MOCK_METHOD2(setVsyncEnabled, void(PhysicalDisplayId, hal::Vsync));
/frameworks/native/services/surfaceflinger/DisplayHardware/
DHWComposer.h236 virtual void setVsyncEnabled(PhysicalDisplayId, hal::Vsync enabled) = 0;
426 void setVsyncEnabled(PhysicalDisplayId, hal::Vsync enabled) override;
DHWC2.cpp106 error = setVsyncEnabled(HWC2::Vsync::DISABLE); in ~Display()
511 Error Display::setVsyncEnabled(Vsync enabled) in setVsyncEnabled() function in android::HWC2::impl::Display
514 auto intError = mComposer.setVsyncEnabled(mId, intEnabled); in setVsyncEnabled()
DHWC2.h155 [[nodiscard]] virtual hal::Error setVsyncEnabled(hal::Vsync enabled) = 0;
241 hal::Error setVsyncEnabled(hal::Vsync enabled) override;
DHWComposer.cpp418 void HWComposer::setVsyncEnabled(PhysicalDisplayId displayId, hal::Vsync enabled) { in setVsyncEnabled() function in android::impl::HWComposer
432 auto error = displayData.hwcDisplay->setVsyncEnabled(enabled); in setVsyncEnabled()
614 setVsyncEnabled(displayId, hal::Vsync::DISABLE); in setPowerMode()
DAidlComposerHal.h134 Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override;
DComposerHal.h173 virtual Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) = 0;
DHidlComposerHal.h236 Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override;
DHidlComposerHal.cpp665 Error HidlComposer::setVsyncEnabled(Display display, IComposerClient::Vsync enabled) { in setVsyncEnabled() function in android::Hwc2::HidlComposer
666 auto ret = mClient->setVsyncEnabled(display, enabled); in setVsyncEnabled()
DAidlComposerHal.cpp787 Error AidlComposer::setVsyncEnabled(Display display, IComposerClient::Vsync enabled) { in setVsyncEnabled() function in android::Hwc2::AidlComposer
790 mAidlComposerClient->setVsyncEnabled(translate<int64_t>(display), enableVsync); in setVsyncEnabled()
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/
DMockHWC2.h79 MOCK_METHOD(hal::Error, setVsyncEnabled, (hal::Vsync), (override));
DMockComposer.h97 MOCK_METHOD2(setVsyncEnabled, Error(Display, IComposerClient::Vsync));
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp4279 getHwComposer().setVsyncEnabled(displayId, enable ? hal::Vsync::ENABLE : hal::Vsync::DISABLE); in requestHardwareVsync()