/foundation/window/window_manager/dm/src/ |
H A D | screen.cpp | 174 DMError Screen::GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const
in GetScreenHDRFormat() 176 return SingletonContainer::Get<ScreenManagerAdapter>().GetScreenHDRFormat(GetId(), hdrFormat);
in GetScreenHDRFormat()
|
H A D | display_manager_adapter.cpp | 140 DMError ScreenManagerAdapter::GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat)
in GetScreenHDRFormat() argument 145 return displayManagerServiceProxy_->GetScreenHDRFormat(screenId, hdrFormat);
in GetScreenHDRFormat()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/screen_manager/ |
H A D | rs_screen_info.h | 49 ScreenHDRFormat hdrFormat = ScreenHDRFormat::NOT_SUPPORT_HDR; member
|
/foundation/window/window_manager/interfaces/innerkits/dm/ |
H A D | screen.h | 274 DMError GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const;
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/zidl/ |
H A D | screen_session_manager_stub.cpp | 479 [](Parcel& parcel, const ScreenHDRFormat& hdrFormat) { in OnRemoteRequest() 480 return parcel.WriteUint32(static_cast<uint32_t>(hdrFormat)); in OnRemoteRequest() 487 ScreenHDRFormat hdrFormat; in OnRemoteRequest() local 488 DMError ret = GetScreenHDRFormat(screenId, hdrFormat); in OnRemoteRequest() 493 static_cast<void>(reply.WriteInt32(static_cast<uint32_t>(hdrFormat))); in OnRemoteRequest()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/screen_manager/ |
H A D | rs_screen.h | 98 virtual int32_t GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const = 0;
182 int32_t GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const override;
|
H A D | rs_screen.cpp | 919 int32_t RSScreen::GetScreenHDRFormat(ScreenHDRFormat& hdrFormat) const
in GetScreenHDRFormat() 922 hdrFormat = supportedVirtualHDRFormats_[currentVirtualHDRFormatIdx_];
in GetScreenHDRFormat() 928 hdrFormat = supportedPhysicalHDRFormats_[currentPhysicalHDRFormatIdx_];
in GetScreenHDRFormat()
|
H A D | rs_screen_manager.h | 180 virtual int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) const = 0;
389 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) const override;
494 int32_t GetScreenHDRFormatLocked(ScreenId id, ScreenHDRFormat& hdrFormat) const;
|
H A D | rs_screen_manager.cpp | 1509 screen->GetScreenHDRFormat(info.hdrFormat);
in QueryScreenInfoLocked() 1888 int32_t RSScreenManager::GetScreenHDRFormatLocked(ScreenId id, ScreenHDRFormat& hdrFormat) const
in GetScreenHDRFormatLocked() 1895 return screensIt->second->GetScreenHDRFormat(hdrFormat);
in GetScreenHDRFormatLocked() 2054 int32_t RSScreenManager::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) const
in GetScreenHDRFormat() 2057 return GetScreenHDRFormatLocked(id, hdrFormat);
in GetScreenHDRFormat()
|
/foundation/window/window_manager/dm/test/unittest/ |
H A D | screen_test.cpp | 325 ScreenHDRFormat hdrFormat = ScreenHDRFormat{0};
in HWTEST_F() local 326 auto res = screen_->GetScreenHDRFormat(hdrFormat);
in HWTEST_F()
|
H A D | display_manager_adapter_test.cpp | 348 ScreenHDRFormat hdrFormat = ScreenHDRFormat{NOT_SUPPORT_HDR};
in HWTEST_F() local 349 DMError err = SingletonContainer::Get<ScreenManagerAdapter>().GetScreenHDRFormat(0, hdrFormat);
in HWTEST_F()
|
/foundation/window/window_manager/dmserver/include/ |
H A D | display_manager_proxy.h | 61 DMError GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat) override;
|
/foundation/window/window_manager/test/common/mock/ |
H A D | mock_display_manager_adapter.h | 84 MOCK_METHOD2(GetScreenHDRFormat, DMError(ScreenId screenId, ScreenHDRFormat& hdrFormat));
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/ |
H A D | screen_session_dumper.cpp | 370 ScreenHDRFormat hdrFormat; in DumpRsInfoById01() local 371 ret = screenSession->GetScreenHDRFormat(hdrFormat); in DumpRsInfoById01() 374 << static_cast<int32_t>(hdrFormat) << std::endl; in DumpRsInfoById01()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/transaction/ |
H A D | rs_interfaces.h | 190 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat);
|
H A D | rs_interfaces.cpp | 518 int32_t RSInterfaces::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat)
in GetScreenHDRFormat() argument 520 return renderServiceClient_->GetScreenHDRFormat(id, hdrFormat);
in GetScreenHDRFormat()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_render_service_connection.cpp | 1434 int32_t RSRenderServiceConnection::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) 1442 [=, &hdrFormat]() { return screenManager_->GetScreenHDRFormat(id, hdrFormat); }).get(); 1445 [=, &hdrFormat]() { return screenManager_->GetScreenHDRFormat(id, hdrFormat); }).get();
|
H A D | rs_render_service_connection.h | 210 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) override;
|
/foundation/window/window_manager/interfaces/kits/napi/display_runtime/ |
H A D | js_display.cpp | 617 for (const auto hdrFormat : hdrFormats) {
in CreateJsHDRFormatArray() 618 ScreenHDRFormat hdrFormatValue = static_cast<ScreenHDRFormat>(hdrFormat);
in CreateJsHDRFormatArray() 620 WLOGFE("Get HDR format name %{public}u, but not in api type", hdrFormat);
in CreateJsHDRFormatArray()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/ |
H A D | rs_render_service_connection_proxy_test.cpp | 689 ScreenHDRFormat hdrFormat = IMAGE_HDR_ISO_DUAL; in HWTEST_F() local 690 ASSERT_EQ(proxy->GetScreenHDRFormat(id, hdrFormat), 2); in HWTEST_F()
|
/foundation/window/window_manager/dmserver/src/ |
H A D | display_manager_proxy.cpp | 576 [](Parcel& parcel, ScreenHDRFormat& hdrFormat) {
in GetSupportedHDRFormats() 579 hdrFormat = static_cast<ScreenHDRFormat>(value);
in GetSupportedHDRFormats() 586 DMError DisplayManagerProxy::GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat)
in GetScreenHDRFormat() argument 614 hdrFormat = static_cast<ScreenHDRFormat>(reply.ReadUint32());
in GetScreenHDRFormat()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/ |
H A D | rs_irender_service_connection.h | 213 virtual int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) = 0;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/ |
H A D | rs_render_service_connection_proxy.h | 185 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) override;
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/windows/ |
H A D | rs_render_service_client.cpp | 381 int32_t RSRenderServiceClient::GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat) in GetScreenHDRFormat() argument
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/ |
H A D | rs_render_service_client.h | 270 int32_t GetScreenHDRFormat(ScreenId id, ScreenHDRFormat& hdrFormat);
|