/foundation/CastEngine/castengine_cast_framework/client/src/ |
H A D | cast_session_manager_adaptor.cpp | 81 int32_t CastSessionManagerAdaptor::CreateCastSession(const CastSessionProperty &property, in CreateCastSession() function in OHOS::CastEngine::CastEngineClient::CastSessionManagerAdaptor 89 int32_t ret = proxy_->CreateCastSession(property, impl); in CreateCastSession()
|
H A D | cast_session_manager.cpp | 153 int32_t CastSessionManager::CreateCastSession(const CastSessionProperty &property, in CreateCastSession() function in OHOS::CastEngine::CastEngineClient::CastSessionManager 158 return adaptor ? adaptor->CreateCastSession(property, castSession) : CAST_ENGINE_ERROR; in CreateCastSession()
|
H A D | cast_session_manager_service_proxy.cpp | 125 int32_t CastSessionManagerServiceProxy::CreateCastSession(const CastSessionProperty &property, in CreateCastSession() function in OHOS::CastEngine::CastEngineClient::CastSessionManagerServiceProxy
|
/foundation/CastEngine/castengine_cast_framework/client/include/ |
H A D | cast_session_manager_service_proxy.h | 39 int32_t CreateCastSession(const CastSessionProperty &property, sptr<ICastSessionImpl> &castSession) override;
|
H A D | cast_session_manager_adaptor.h | 45 int32_t CreateCastSession(const CastSessionProperty &property, std::shared_ptr<ICastSession> &castSession) override;
|
/foundation/CastEngine/castengine_cast_framework/interfaces/inner_api/include/ |
H A D | i_cast_session_manager_adaptor.h | 45 virtual int32_t CreateCastSession(const CastSessionProperty &property,
|
H A D | cast_session_manager.h | 47 int32_t CreateCastSession(const CastSessionProperty &property, std::shared_ptr<ICastSession> &castSession);
|
/foundation/CastEngine/castengine_cast_framework/common/include/private/ |
H A D | i_cast_session_manager_service.h | 45 virtual int32_t CreateCastSession(const CastSessionProperty &property, sptr<ICastSessionImpl> &castSession) = 0;
|
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/include/ |
H A D | napi_cast_session_manager.h | 48 static napi_value CreateCastSession(napi_env env, napi_callback_info info);
|
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/src/ |
H A D | napi_cast_session_manager.cpp | 58 DECLARE_NAPI_FUNCTION("createCastSession", CreateCastSession), in Init() 183 napi_value NapiCastSessionManager::CreateCastSession(napi_env env, napi_callback_info info) in CreateCastSession() function in OHOS::CastEngine::CastEngineClient::NapiCastSessionManager 209 CastSessionManager::GetInstance().CreateCastSession(napiAsyntask->property_, napiAsyntask->session_); in CreateCastSession() 212 napiAsyntask->errMessage = "CreateCastSession failed : no permission"; in CreateCastSession() 214 napiAsyntask->errMessage = "CreateCastSession failed : invalid parameters"; in CreateCastSession() 216 napiAsyntask->errMessage = "CreateCastSession failed : native server exception"; in CreateCastSession() 229 return NapiAsyncWork::Enqueue(env, napiAsyntask, "CreateCastSession", executor, complete); in CreateCastSession()
|
/foundation/CastEngine/castengine_cast_framework/service/include/ |
H A D | cast_session_manager_service.h | 51 int32_t CreateCastSession(const CastSessionProperty &property, sptr<ICastSessionImpl> &castSession) override;
|
/foundation/CastEngine/castengine_cast_framework/service/src/ |
H A D | cast_session_manager_service_stub.cpp | 139 int32_t ret = CreateCastSession(*property, sessionStub); in DoCreateCastSessionTask()
|
H A D | cast_session_manager_service.cpp | 229 service->CreateCastSession({}, session); 456 int32_t CastSessionManagerService::CreateCastSession(const CastSessionProperty &property, in CreateCastSession() function in OHOS::CastEngine::CastEngineService::CastSessionManagerService 463 CLOGD("CreateCastSession in, protocol:%{public}d, endType:%{public}d.", property.protocolType, property.endType); in CreateCastSession() 491 CLOGD("CreateCastSession success, session(%{public}d) count:%{public}zu", in CreateCastSession()
|
/foundation/multimedia/av_session/services/session/server/ |
H A D | hw_cast_provider.cpp | 117 int ret = CastSessionManager::GetInstance().CreateCastSession(property, castSession);
in StartCastSession()
|
/foundation/multimedia/av_session/services/session/server/test/ |
H A D | hw_cast_stream_player_test.cpp | 67 CastSessionManager::GetInstance().CreateCastSession(property, session); in CreateSession()
|