Home
last modified time | relevance | path

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

12

/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/mock/
H A DMockSchedulerCallback.h26 MOCK_METHOD1(setVsyncEnabled, void(bool));
36 void setVsyncEnabled(bool) override {} in setVsyncEnabled() function
/aosp12/hardware/interfaces/graphics/composer/2.1/
H A DIComposerCallback.hal37 * has been enabled with setVsyncEnabled.
67 * setVsyncEnabled).
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DSurfaceFlinger_SetPowerModeInternalTest.cpp64 EXPECT_CALL(test->mSchedulerCallback, setVsyncEnabled(_)).Times(0); in setupVsyncAndEventThreadNoCallExpectations()
91 EXPECT_CALL(test->mSchedulerCallback, setVsyncEnabled(true)).Times(1); in setupAcquireAndEnableVsyncCallExpectations()
99 EXPECT_CALL(test->mSchedulerCallback, setVsyncEnabled(false)).Times(1); in setupReleaseAndDisableVsyncCallExpectations()
H A DSurfaceFlinger_HandleTransactionLockedTest.cpp188 setVsyncEnabled(Case::Display::HWC_DISPLAY_ID, IComposerClient::Vsync::DISABLE)) in processesHotplugConnectCommon()
312 setVsyncEnabled(Case::Display::HWC_DISPLAY_ID, IComposerClient::Vsync::DISABLE)) in TEST_F()
380 setVsyncEnabled(Case::Display::HWC_DISPLAY_ID, IComposerClient::Vsync::DISABLE)) in TEST_F()
H A DSchedulerTest.cpp75 EXPECT_CALL(callback, setVsyncEnabled(false)).Times(1); in ExpectDisableVsync()
/aosp12/hardware/google/graphics/common/libhwc2.1/libdisplayinterface/
H A DExynosDisplayInterface.h37 virtual int32_t setVsyncEnabled(uint32_t __unused enabled) {return NO_ERROR;}; in setVsyncEnabled() function
/aosp12/frameworks/native/services/surfaceflinger/Scheduler/
H A DScheduler.cpp163 mSchedulerCallback.setVsyncEnabled(false); in Scheduler()
490 mSchedulerCallback.setVsyncEnabled(true); in enableHardwareVsync()
498 mSchedulerCallback.setVsyncEnabled(false); in disableHardwareVsync()
546 mSchedulerCallback.setVsyncEnabled(true); in setVsyncPeriod()
H A DScheduler.h59 virtual void setVsyncEnabled(bool) = 0;
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/passthrough/include/composer-passthrough/2.1/
H A DHwcHal.h299 Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override { in setVsyncEnabled() function
300 int32_t err = mDispatch.setVsyncEnabled(mDevice, display, static_cast<int32_t>(enabled)); in setVsyncEnabled()
573 !initDispatch(HWC2_FUNCTION_SET_VSYNC_ENABLED, &mDispatch.setVsyncEnabled) || in initDispatch()
663 HWC2_PFN_SET_VSYNC_ENABLED setVsyncEnabled; member
/aosp12/hardware/interfaces/graphics/composer/2.4/
H A DIComposerCallback.hal26 * setVsyncEnabled).
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/
H A DComposerClient.h280 Return<Error> setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override { in setVsyncEnabled() function
281 Error err = mHal->setVsyncEnabled(display, enabled); in setVsyncEnabled()
H A DComposerHal.h96 virtual Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) = 0;
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h203 virtual void setVsyncEnabled(PhysicalDisplayId, hal::Vsync enabled) = 0;
338 void setVsyncEnabled(PhysicalDisplayId, hal::Vsync enabled) override;
H A DHWC2.cpp99 error = setVsyncEnabled(HWC2::Vsync::DISABLE); in ~Display()
469 Error Display::setVsyncEnabled(Vsync enabled) in setVsyncEnabled() function in android::HWC2::impl::Display
472 auto intError = mComposer.setVsyncEnabled(mId, intEnabled); in setVsyncEnabled()
H A DHWC2.h132 [[clang::warn_unused_result]] virtual hal::Error setVsyncEnabled(hal::Vsync enabled) = 0;
198 hal::Error setVsyncEnabled(hal::Vsync enabled) override;
H A DHWComposer.cpp427 void HWComposer::setVsyncEnabled(PhysicalDisplayId displayId, hal::Vsync enabled) { in setVsyncEnabled() function in android::impl::HWComposer
444 auto error = displayData.hwcDisplay->setVsyncEnabled(enabled); in setVsyncEnabled()
605 setVsyncEnabled(displayId, hal::Vsync::DISABLE); in setPowerMode()
H A DComposerHal.h146 virtual Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) = 0;
390 Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override;
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/vts/
H A DComposerVts.cpp268 void ComposerClient::setVsyncEnabled(Display display, bool enabled) { in setVsyncEnabled() function in android::hardware::graphics::composer::V2_1::vts::ComposerClient
271 Error error = mClient->setVsyncEnabled(display, vsync); in setVsyncEnabled()
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
H A DMockHWComposer.h90 MOCK_METHOD2(setVsyncEnabled, void(PhysicalDisplayId, hal::Vsync));
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/vts/include/composer-vts/2.1/
H A DComposerVts.h112 void setVsyncEnabled(Display display, bool enabled);
/aosp12/hardware/interfaces/graphics/composer/2.1/vts/functional/
H A DVtsHalGraphicsComposerV2_1TargetTest.cpp71 mComposerClient->setVsyncEnabled(mPrimaryDisplay, false); in SetUp()
641 mComposerClient->setVsyncEnabled(mPrimaryDisplay, true); in TEST_P()
643 mComposerClient->setVsyncEnabled(mPrimaryDisplay, false); in TEST_P()
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/
H A DMockHWC2.h76 MOCK_METHOD(hal::Error, setVsyncEnabled, (hal::Vsync), (override));
H A DMockComposer.h88 MOCK_METHOD2(setVsyncEnabled, Error(Display, IComposerClient::Vsync));
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/include/hwc2on1adapter/
H A DHWC2On1Adapter.h241 HWC2::Error setVsyncEnabled(HWC2::Vsync enabled);
520 return callDisplayFunction(device, display, &Display::setVsyncEnabled, in setVsyncEnabledHook()
/aosp12/hardware/qcom/display/msm8994/libhwcomposer/
H A DHWC2On1Adapter.h221 HWC2::Error setVsyncEnabled(HWC2::Vsync enabled);
453 return callDisplayFunction(device, display, &Display::setVsyncEnabled, in setVsyncEnabledHook()

12