/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/systemtest/ |
H A D | hdiscreen_test.cpp | 46 EXPECT_CALL(*mockDevice_, GetScreenPowerStatus(_, _)).WillRepeatedly(testing::Return(0)); in SetUpTestCase() 83 ASSERT_EQ(HdiScreenSysTest::hdiScreen_->GetScreenPowerStatus(dispPowerStatus), 0);
|
H A D | mock_hdi_device_systest.h | 46 MOCK_METHOD2(GetScreenPowerStatus, int32_t(uint32_t, GraphicDispPowerStatus&));
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/unittest/ |
H A D | hdiscreen_test.cpp | 47 EXPECT_CALL(*mockDevice_, GetScreenPowerStatus(_, _)).WillRepeatedly(testing::Return(0)); in SetUpTestCase() 90 ASSERT_EQ(hdiScreen_->GetScreenPowerStatus(status), GRAPHIC_DISPLAY_NULL_PTR); 221 ASSERT_EQ(HdiScreenTest::hdiScreen_->GetScreenPowerStatus(dispPowerStatus), 0);
|
H A D | mock_hdi_device.h | 46 MOCK_METHOD2(GetScreenPowerStatus, int32_t(uint32_t, GraphicDispPowerStatus&));
|
H A D | hdidevice_test.cpp | 72 …ASSERT_EQ(HdiDeviceTest::hdiDevice_->GetScreenPowerStatus(screenId, dstatus), GRAPHIC_DISPLAY_SUCC…
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/src/ |
H A D | hdi_screen.cpp | 165 int32_t HdiScreen::GetScreenPowerStatus(GraphicDispPowerStatus &status) const in GetScreenPowerStatus() function in OHOS::Rosen::HdiScreen 168 return device_->GetScreenPowerStatus(screenId_, status); in GetScreenPowerStatus()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/include/ |
H A D | hdi_screen.h | 45 int32_t GetScreenPowerStatus(GraphicDispPowerStatus &status) const;
|
H A D | hdi_device.h | 45 virtual int32_t GetScreenPowerStatus(uint32_t screenId, GraphicDispPowerStatus &status) = 0;
|
H A D | hdi_device_impl.h | 43 int32_t GetScreenPowerStatus(uint32_t screenId, GraphicDispPowerStatus &status) override;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdiscreen_fuzzer/ |
H A D | hdiscreen_fuzzer.cpp | 134 g_hdiScreen->GetScreenPowerStatus(status); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/screen_manager/ |
H A D | rs_screen_manager_test.cpp | 51 EXPECT_CALL(*hdiDeviceMock_, GetScreenPowerStatus(mockScreenId_, _)).WillRepeatedly( in SetUpTestCase() 1154 ASSERT_EQ(screenManager->GetScreenPowerStatus(screenId), INVALID_POWER_STATUS); 1171 … ASSERT_EQ(screenManager->GetScreenPowerStatus(screenId), ScreenPowerStatus::INVALID_POWER_STATUS); 1190 ASSERT_EQ(screenManager->GetScreenPowerStatus(screenId), POWER_STATUS_ON); 1192 ASSERT_EQ(screenManager->GetScreenPowerStatus(screenId), POWER_STATUS_ON_ADVANCED); 1194 ASSERT_EQ(screenManager->GetScreenPowerStatus(screenId), POWER_STATUS_OFF); 1196 ASSERT_EQ(screenManager->GetScreenPowerStatus(screenId), POWER_STATUS_OFF_ADVANCED);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/mock/ |
H A D | mock_hdi_device.h | 44 MOCK_METHOD2(GetScreenPowerStatus, int32_t(uint32_t, GraphicDispPowerStatus&));
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/ |
H A D | rs_interfaces_test.cpp | 365 auto powerStatus = rsInterfaces->GetScreenPowerStatus(virtualScreenId); 541 auto powerStatus = rsInterfaces->GetScreenPowerStatus(screenId); 560 auto powerStatus = rsInterfaces->GetScreenPowerStatus(screenId); 574 auto powerStatus = rsInterfaces->GetScreenPowerStatus(INVALID_SCREEN_ID);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/fuzztest/rsinterfaces_fuzzer/ |
H A D | rsinterfaces_fuzzer.cpp | 103 rsInterfaces.GetScreenPowerStatus(static_cast<ScreenId>(id)); in RSPhysicalScreenFuzzTest()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/ |
H A D | rs_screen_manager.h | 120 virtual ScreenPowerStatus GetScreenPowerStatus(ScreenId id) const = 0; 330 ScreenPowerStatus GetScreenPowerStatus(ScreenId id) const override;
|
H A D | rs_screen.cpp | 158 if (hdiScreen_->GetScreenPowerStatus(powerStatus_) < 0) { in PhysicalScreenInit() 434 if (hdiScreen_->GetScreenPowerStatus(status) < 0) { in GetPowerStatus()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/ |
H A D | rs_interfaces.cpp | 379 ScreenPowerStatus RSInterfaces::GetScreenPowerStatus(ScreenId id) in GetScreenPowerStatus() function in OHOS::Rosen::RSInterfaces 381 return renderServiceClient_->GetScreenPowerStatus(id); in GetScreenPowerStatus()
|
H A D | rs_interfaces.h | 155 ScreenPowerStatus GetScreenPowerStatus(ScreenId id);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/ |
H A D | drawing_sample.cpp | 207 screen->GetScreenPowerStatus(powerState); in CreatePhysicalScreen()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/ |
H A D | rs_render_service_connection_proxy_test.cpp | 492 HWTEST_F(RSRenderServiceConnectionProxyTest, GetScreenPowerStatus, TestSize.Level1) 500 ASSERT_EQ(proxy->GetScreenPowerStatus(id), ScreenPowerStatus::INVALID_POWER_STATUS);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsrenderserviceconnectionproxy_fuzzer/ |
H A D | rsrenderserviceconnectionproxy_fuzzer.cpp | 164 rsRenderServiceConnectionProxy.GetScreenPowerStatus(id1); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/ |
H A D | rs_irender_service_connection.h | 161 virtual ScreenPowerStatus GetScreenPowerStatus(ScreenId id) = 0;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/darwin/ |
H A D | rs_render_service_client.cpp | 254 ScreenPowerStatus RSRenderServiceClient::GetScreenPowerStatus(ScreenId id) in GetScreenPowerStatus() function in OHOS::Rosen::RSRenderServiceClient
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/ |
H A D | rs_render_service_client.cpp | 254 ScreenPowerStatus RSRenderServiceClient::GetScreenPowerStatus(ScreenId id) in GetScreenPowerStatus() function in OHOS::Rosen::RSRenderServiceClient
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/ |
H A D | drawing_engine_sample.cpp | 352 screen_->GetScreenPowerStatus(powerState); in CreatePhysicalScreen()
|