/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/mock/ |
H A D | MockSchedulerCallback.h | 26 MOCK_METHOD1(setVsyncEnabled, void(bool)); 36 void setVsyncEnabled(bool) override {} in setVsyncEnabled() function
|
/aosp12/hardware/interfaces/graphics/composer/2.1/ |
H A D | IComposerCallback.hal | 37 * has been enabled with setVsyncEnabled. 67 * setVsyncEnabled).
|
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/ |
H A D | SurfaceFlinger_SetPowerModeInternalTest.cpp | 64 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 D | SurfaceFlinger_HandleTransactionLockedTest.cpp | 188 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 D | SchedulerTest.cpp | 75 EXPECT_CALL(callback, setVsyncEnabled(false)).Times(1); in ExpectDisableVsync()
|
/aosp12/hardware/google/graphics/common/libhwc2.1/libdisplayinterface/ |
H A D | ExynosDisplayInterface.h | 37 virtual int32_t setVsyncEnabled(uint32_t __unused enabled) {return NO_ERROR;}; in setVsyncEnabled() function
|
/aosp12/frameworks/native/services/surfaceflinger/Scheduler/ |
H A D | Scheduler.cpp | 163 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 D | Scheduler.h | 59 virtual void setVsyncEnabled(bool) = 0;
|
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/passthrough/include/composer-passthrough/2.1/ |
H A D | HwcHal.h | 299 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 D | IComposerCallback.hal | 26 * setVsyncEnabled).
|
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/ |
H A D | ComposerClient.h | 280 Return<Error> setVsyncEnabled(Display display, IComposerClient::Vsync enabled) override { in setVsyncEnabled() function 281 Error err = mHal->setVsyncEnabled(display, enabled); in setVsyncEnabled()
|
H A D | ComposerHal.h | 96 virtual Error setVsyncEnabled(Display display, IComposerClient::Vsync enabled) = 0;
|
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/ |
H A D | HWComposer.h | 203 virtual void setVsyncEnabled(PhysicalDisplayId, hal::Vsync enabled) = 0; 338 void setVsyncEnabled(PhysicalDisplayId, hal::Vsync enabled) override;
|
H A D | HWC2.cpp | 99 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 D | HWC2.h | 132 [[clang::warn_unused_result]] virtual hal::Error setVsyncEnabled(hal::Vsync enabled) = 0; 198 hal::Error setVsyncEnabled(hal::Vsync enabled) override;
|
H A D | HWComposer.cpp | 427 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 D | ComposerHal.h | 146 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 D | ComposerVts.cpp | 268 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 D | MockHWComposer.h | 90 MOCK_METHOD2(setVsyncEnabled, void(PhysicalDisplayId, hal::Vsync));
|
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/vts/include/composer-vts/2.1/ |
H A D | ComposerVts.h | 112 void setVsyncEnabled(Display display, bool enabled);
|
/aosp12/hardware/interfaces/graphics/composer/2.1/vts/functional/ |
H A D | VtsHalGraphicsComposerV2_1TargetTest.cpp | 71 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 D | MockHWC2.h | 76 MOCK_METHOD(hal::Error, setVsyncEnabled, (hal::Vsync), (override));
|
H A D | MockComposer.h | 88 MOCK_METHOD2(setVsyncEnabled, Error(Display, IComposerClient::Vsync));
|
/aosp12/hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/include/hwc2on1adapter/ |
H A D | HWC2On1Adapter.h | 241 HWC2::Error setVsyncEnabled(HWC2::Vsync enabled); 520 return callDisplayFunction(device, display, &Display::setVsyncEnabled, in setVsyncEnabledHook()
|
/aosp12/hardware/qcom/display/msm8994/libhwcomposer/ |
H A D | HWC2On1Adapter.h | 221 HWC2::Error setVsyncEnabled(HWC2::Vsync enabled); 453 return callDisplayFunction(device, display, &Display::setVsyncEnabled, in setVsyncEnabledHook()
|