/ohos5.0/foundation/multimedia/av_session/services/session/server/ |
H A D | hw_cast_display_listener.cpp | 72 CastDisplayInfo castDisplayInfo; in ReportCastDisplay() local 73 castDisplayInfo.displayState = displayState; in ReportCastDisplay() 74 castDisplayInfo.displayId = displayInfo->GetDisplayId(); in ReportCastDisplay() 75 castDisplayInfo.name = displayInfo->GetName(); in ReportCastDisplay() 76 castDisplayInfo.width = static_cast<int32_t>(displayInfo->GetWidth()); in ReportCastDisplay() 77 castDisplayInfo.height = static_cast<int32_t>(displayInfo->GetHeight()); in ReportCastDisplay() 78 listener_->OnCastDisplayChange(castDisplayInfo); in ReportCastDisplay()
|
H A D | avsession_item.cpp | 1506 CastDisplayInfo castDisplayInfo; in GetAllCastDisplays() local 1507 castDisplayInfo.displayState W= CastDisplayState::STATE_ON; in GetAllCastDisplays() 1508 castDisplayInfo.displayId = displayInfo->GetDisplayId(); in GetAllCastDisplays() 1509 castDisplayInfo.name = displayInfo->GetName(); in GetAllCastDisplays() 1510 castDisplayInfo.width = static_cast<int32_t>(displayInfo->GetWidth()); in GetAllCastDisplays() 1511 castDisplayInfo.height = static_cast<int32_t>(displayInfo->GetHeight()); in GetAllCastDisplays() 1512 displays.push_back(castDisplayInfo); in GetAllCastDisplays()
|
/ohos5.0/foundation/multimedia/av_session/services/session/ipc/stub/ |
H A D | avsession_callback_stub.cpp | 250 CastDisplayInfo castDisplayInfo; in HandleOnCastDisplayChange() local 253 castDisplayInfo.displayState = static_cast<CastDisplayState>(displayState); in HandleOnCastDisplayChange() 256 castDisplayInfo.displayId = displayId; in HandleOnCastDisplayChange() 259 castDisplayInfo.name = name; in HandleOnCastDisplayChange() 262 castDisplayInfo.width = width; in HandleOnCastDisplayChange() 265 castDisplayInfo.height = height; in HandleOnCastDisplayChange() 266 OnCastDisplayChange(castDisplayInfo); in HandleOnCastDisplayChange()
|
/ohos5.0/foundation/multimedia/av_session/services/session/ipc/proxy/ |
H A D | avsession_callback_proxy.cpp | 310 void AVSessionCallbackProxy::OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) in OnCastDisplayChange() argument 314 CHECK_AND_RETURN_LOG(data.WriteInt32(static_cast<int32_t>(castDisplayInfo.displayState)), in OnCastDisplayChange() 316 CHECK_AND_RETURN_LOG(data.WriteUint64(castDisplayInfo.displayId), "write displayId failed"); in OnCastDisplayChange() 317 CHECK_AND_RETURN_LOG(data.WriteString(castDisplayInfo.name), "write name failed"); in OnCastDisplayChange() 318 CHECK_AND_RETURN_LOG(data.WriteInt32(castDisplayInfo.width), "write width failed"); in OnCastDisplayChange() 319 CHECK_AND_RETURN_LOG(data.WriteInt32(castDisplayInfo.height), "write height failed"); in OnCastDisplayChange()
|
H A D | avsession_proxy.cpp | 631 CastDisplayInfo castDisplayInfo; in GetAllCastDisplays() local 634 castDisplayInfo.displayState = static_cast<CastDisplayState>(displayState); in GetAllCastDisplays() 637 castDisplayInfo.displayId = displayId; in GetAllCastDisplays() 640 castDisplayInfo.name = name; in GetAllCastDisplays() 643 castDisplayInfo.width = width; in GetAllCastDisplays() 646 castDisplayInfo.height = height; in GetAllCastDisplays() 647 displays.push_back(castDisplayInfo); in GetAllCastDisplays()
|
H A D | avsession_callback_proxy.h | 44 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override;
|
/ohos5.0/foundation/multimedia/av_session/frameworks/native/session/src/ |
H A D | avsession_callback_client.cpp | 218 void AVSessionCallbackClient::OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) in OnCastDisplayChange() argument 224 ….AVSessionPostTask([callback, castDisplayInfo]() { callback->OnCastDisplayChange(castDisplayInfo);… in OnCastDisplayChange()
|
/ohos5.0/foundation/multimedia/av_session/services/session/server/test/ |
H A D | avsession_callback_proxy_test.cpp | 312 CastDisplayInfo castDisplayInfo; variable 313 aVSessionCallbackProxy->OnCastDisplayChange(castDisplayInfo);
|
H A D | avsession_callback_stub_test.cpp | 115 void OnCastDisplayChange(const CastDisplayInfo &castDisplayInfo) override {}; in OnCastDisplayChange() argument
|
H A D | avsession_service_test.cpp | 117 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override {}; in OnCastDisplayChange() argument
|
H A D | avsession_proxy_test.cpp | 97 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override {}; in OnCastDisplayChange() argument
|
/ohos5.0/foundation/multimedia/av_session/frameworks/native/session/include/ |
H A D | avsession_callback_client.h | 49 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override;
|
/ohos5.0/foundation/multimedia/av_session/frameworks/js/napi/session/include/ |
H A D | napi_avsession_callback.h | 75 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override;
|
/ohos5.0/foundation/multimedia/av_session/frameworks/js/napi/session/src/ |
H A D | napi_avsession_callback.cpp | 279 void NapiAVSessionCallback::OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) in OnCastDisplayChange() argument 282 HandleEvent(EVENT_DISPLAY_CHANGE, castDisplayInfo); in OnCastDisplayChange()
|
/ohos5.0/base/web/webview/ohos_adapter/media_adapter/include/ |
H A D | media_avsession_adapter_impl.h | 51 void OnCastDisplayChange(const AVSession::CastDisplayInfo& castDisplayInfo) override;
|
/ohos5.0/foundation/multimedia/av_session/frameworks/native/session/test/benchmarktest/avsession_benchmark_test/ |
H A D | avsession_benchmark_test.cpp | 110 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override; 201 void AVSessionCallbackImpl::OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) in OnCastDisplayChange() argument
|
/ohos5.0/foundation/multimedia/av_session/frameworks/native/ohavsession/include/ |
H A D | OHAVSessionCallbackImpl.h | 48 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override {}; in OnCastDisplayChange() argument
|
/ohos5.0/foundation/multimedia/av_session/interfaces/inner_api/native/session/include/ |
H A D | avsession_info.h | 284 virtual void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) = 0;
|
/ohos5.0/foundation/multimedia/av_session/frameworks/native/session/test/unittest/ |
H A D | avsession_test.cpp | 163 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override; 245 void AVSessionCallbackImpl::OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) in OnCastDisplayChange() argument
|
H A D | avsession_remote_test.cpp | 196 void OnCastDisplayChange(const CastDisplayInfo& castDisplayInfo) override {}; in OnCastDisplayChange() argument
|
/ohos5.0/base/web/webview/ohos_adapter/media_adapter/src/ |
H A D | media_avsession_adapter_impl.cpp | 133 const AVSession::CastDisplayInfo& castDisplayInfo) in OnCastDisplayChange() argument
|