/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/systemtest/ |
H A D | hdiscreen_test.cpp | 49 EXPECT_CALL(*mockDevice_, SetScreenBacklight(_, _)).WillRepeatedly(testing::Return(0));
in SetUpTestCase() 86 ASSERT_EQ(HdiScreenSysTest::hdiScreen_->SetScreenBacklight(level), 0);
in HWTEST_F()
|
H A D | mock_hdi_device_systest.h | 49 MOCK_METHOD2(SetScreenBacklight, int32_t(uint32_t, uint32_t));
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/unittest/ |
H A D | hdiscreen_test.cpp | 50 EXPECT_CALL(*mockDevice_, SetScreenBacklight(_, _)).WillRepeatedly(testing::Return(0));
in SetUpTestCase() 94 ASSERT_EQ(hdiScreen_->SetScreenBacklight(level), GRAPHIC_DISPLAY_NULL_PTR);
in HWTEST_F() 257 * CaseDescription: 1. call SetScreenBacklight
263 ASSERT_EQ(HdiScreenTest::hdiScreen_->SetScreenBacklight(level), 0);
in HWTEST_F()
|
H A D | hdidevice_test.cpp | 87 SetScreenBacklight(_, _)).WillRepeatedly(testing::Return(GRAPHIC_DISPLAY_SUCCESS)); in HWTEST_F() 88 EXPECT_EQ(hdiDeviceMock_->SetScreenBacklight(screenId, screenLightLevel), GRAPHIC_DISPLAY_SUCCESS); in HWTEST_F()
|
H A D | mock_hdi_device.h | 49 MOCK_METHOD2(SetScreenBacklight, int32_t(uint32_t, uint32_t));
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/ |
H A D | hdi_screen.cpp | 172 int32_t HdiScreen::SetScreenBacklight(uint32_t level) const in SetScreenBacklight() function in OHOS::Rosen::HdiScreen 175 return device_->SetScreenBacklight(screenId_, level); in SetScreenBacklight()
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/ |
H A D | hdi_screen.h | 48 int32_t SetScreenBacklight(uint32_t level) const;
|
H A D | hdi_device_impl.h | 45 int32_t SetScreenBacklight(uint32_t screenId, uint32_t level) override;
|
H A D | hdi_device.h | 48 virtual int32_t SetScreenBacklight(uint32_t screenId, uint32_t level) = 0;
|
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/ |
H A D | hdiscreen_fuzzer.cpp | 125 g_hdiScreen->SetScreenBacklight(level); in DoSomethingInterestingWithMyAPI()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/ |
H A D | rs_screen.h | 76 virtual void SetScreenBacklight(uint32_t level) = 0;
161 void SetScreenBacklight(uint32_t level) override;
|
H A D | rs_screen.cpp | 675 void RSScreen::SetScreenBacklight(uint32_t level)
in SetScreenBacklight() function in OHOS::Rosen::impl::RSScreen 682 RS_LOGW("RSScreen %{public}s: virtual screen not support SetScreenBacklight.", __func__);
in SetScreenBacklight() 686 RS_LOGD("RSScreen_%{public}" PRIu64 " SetScreenBacklight, level is %{public}u", id_, level);
in SetScreenBacklight() 687 if (hdiScreen_->SetScreenBacklight(level) < 0) {
in SetScreenBacklight()
|
H A D | rs_screen_manager.h | 154 virtual void SetScreenBacklight(ScreenId id, uint32_t level) = 0;
357 void SetScreenBacklight(ScreenId id, uint32_t level) override;
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/mock/ |
H A D | mock_hdi_device.h | 48 MOCK_METHOD2(SetScreenBacklight, int32_t(uint32_t, uint32_t));
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/ |
H A D | rs_interfaces.h | 166 void SetScreenBacklight(ScreenId id, uint32_t level);
|
H A D | rs_interfaces.cpp | 436 void RSInterfaces::SetScreenBacklight(ScreenId id, uint32_t level)
in SetScreenBacklight() function in OHOS::Rosen::RSInterfaces 438 RS_LOGD("RSInterfaces::SetScreenBacklight: ScreenId: %{public}" PRIu64 ", level: %{public}u", id, level);
in SetScreenBacklight() 439 renderServiceClient_->SetScreenBacklight(id, level);
in SetScreenBacklight()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsinterfaces_fuzzer/ |
H A D | rsinterfaces_fuzzer.cpp | 105 rsInterfaces.SetScreenBacklight(static_cast<ScreenId>(id), level); in RSPhysicalScreenFuzzTest()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/ |
H A D | rs_render_service_connection_proxy_test.cpp | 553 * @tc.name: SetScreenBacklight Test 554 * @tc.desc: SetScreenBacklight Test 558 HWTEST_F(RSRenderServiceConnectionProxyTest, SetScreenBacklight, TestSize.Level1) in HWTEST_F() 562 proxy->SetScreenBacklight(id, level); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/ |
H A D | rs_irender_service_connection.h | 177 virtual void SetScreenBacklight(ScreenId id, uint32_t level) = 0;
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderserviceconnectionproxy_fuzzer/ |
H A D | rsrenderserviceconnectionproxy_fuzzer.cpp | 168 rsRenderServiceConnectionProxy.SetScreenBacklight(id1, width);
in DoSomethingInterestingWithMyAPI()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_render_service_connection_proxy.h | 149 void SetScreenBacklight(ScreenId id, uint32_t level) override;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_render_service_connection.h | 174 void SetScreenBacklight(ScreenId id, uint32_t level) override;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/ |
H A D | rs_render_service_client.cpp | 290 void RSRenderServiceClient::SetScreenBacklight(ScreenId id, uint32_t level) in SetScreenBacklight() function in OHOS::Rosen::RSRenderServiceClient
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/ |
H A D | rs_render_service_client.h | 232 void SetScreenBacklight(ScreenId id, uint32_t level);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/ |
H A D | rs_render_service_client.cpp | 290 void RSRenderServiceClient::SetScreenBacklight(ScreenId id, uint32_t level) in SetScreenBacklight() function in OHOS::Rosen::RSRenderServiceClient
|