/foundation/multimedia/av_codec/services/services/codeclist/client/ |
H A D | codeclist_client.cpp | 27 std::shared_ptr<CodecListClient> CodecListClient::Create(const sptr<IStandardCodecListService> &ipcProxy) in Create() argument 29 CHECK_AND_RETURN_RET_LOG(ipcProxy != nullptr, nullptr, "Create codeclist client failed: ipcProxy is nullptr"); in Create() 30 std::shared_ptr<CodecListClient> codecList = std::make_shared<CodecListClient>(ipcProxy); in Create() 34 CodecListClient::CodecListClient(const sptr<IStandardCodecListService> &ipcProxy) : codecListProxy_(ipcProxy) in CodecListClient() argument
|
H A D | codeclist_client.h | 27 static std::shared_ptr<CodecListClient> Create(const sptr<IStandardCodecListService> &ipcProxy); 28 explicit CodecListClient(const sptr<IStandardCodecListService> &ipcProxy);
|
/foundation/multimedia/player_framework/services/services/recorder_profiles/client/ |
H A D | recorder_profiles_client.cpp | 27 const sptr<IStandardRecorderProfilesService> &ipcProxy) in Create() 29 CHECK_AND_RETURN_RET_LOG(ipcProxy != nullptr, nullptr, "ipcProxy is nullptr.."); in Create() 31 std::shared_ptr<RecorderProfilesClient> recorderProfiles = std::make_shared<RecorderProfilesClient>(ipcProxy); in Create() 37 RecorderProfilesClient::RecorderProfilesClient(const sptr<IStandardRecorderProfilesService> &ipcProxy) in RecorderProfilesClient() argument 38 : recorderProfilesProxy_(ipcProxy) in RecorderProfilesClient() 26 Create( const sptr<IStandardRecorderProfilesService> &ipcProxy) Create() argument
|
H A D | recorder_profiles_client.h | 27 static std::shared_ptr<RecorderProfilesClient> Create(const sptr<IStandardRecorderProfilesService> &ipcProxy); 28 explicit RecorderProfilesClient(const sptr<IStandardRecorderProfilesService> &ipcProxy);
|
/foundation/multimedia/player_framework/services/services/screen_capture/client/ |
H A D | screen_capture_controller_client.cpp | 28 const sptr<IStandardScreenCaptureController> &ipcProxy) in Create() 32 std::make_shared<ScreenCaptureControllerClient>(ipcProxy); in Create() 39 ScreenCaptureControllerClient::ScreenCaptureControllerClient(const sptr<IStandardScreenCaptureController> &ipcProxy) in ScreenCaptureControllerClient() argument 40 : screenCaptureControllerProxy_(ipcProxy) in ScreenCaptureControllerClient() 27 Create( const sptr<IStandardScreenCaptureController> &ipcProxy) Create() argument
|
H A D | screen_capture_controller_client.h | 27 Create(const sptr<IStandardScreenCaptureController> &ipcProxy); 28 explicit ScreenCaptureControllerClient(const sptr<IStandardScreenCaptureController> &ipcProxy);
|
H A D | screen_capture_client.h | 27 static std::shared_ptr<ScreenCaptureClient> Create(const sptr<IStandardScreenCaptureService> &ipcProxy); 28 explicit ScreenCaptureClient(const sptr<IStandardScreenCaptureService> &ipcProxy);
|
H A D | screen_capture_client.cpp | 27 const sptr<IStandardScreenCaptureService> &ipcProxy) in Create() 29 std::shared_ptr<ScreenCaptureClient> screenCapture = std::make_shared<ScreenCaptureClient>(ipcProxy); in Create() 39 ScreenCaptureClient::ScreenCaptureClient(const sptr<IStandardScreenCaptureService> &ipcProxy) in ScreenCaptureClient() argument 40 : screenCaptureProxy_(ipcProxy) in ScreenCaptureClient() 26 Create( const sptr<IStandardScreenCaptureService> &ipcProxy) Create() argument
|
/foundation/ability/ability_runtime/frameworks/native/child_process/src/ |
H A D | native_child_callback.cpp | 43 OHIPCRemoteProxy *ipcProxy = CreateIPCRemoteProxy(ipcRemote); in OnNativeChildStarted() local 44 if (ipcProxy == nullptr) { in OnNativeChildStarted() 50 callback_(static_cast<int32_t>(ChildProcessManagerErrorCode::ERR_OK), ipcProxy); in OnNativeChildStarted() local
|
H A D | native_child_process.cpp | 57 void OnNativeChildProcessStartedWapper(int errCode, OHIPCRemoteProxy *ipcProxy) in OnNativeChildProcessStartedWapper() argument 61 g_Callback(CvtChildProcessManagerErrCode(static_cast<ChildProcessManagerErrorCode>(errCode)), ipcProxy); in OnNativeChildProcessStartedWapper()
|
/foundation/multimedia/player_framework/services/services/screen_capture_monitor/client/ |
H A D | screen_capture_monitor_client.cpp | 27 const sptr<IStandardScreenCaptureMonitorService> &ipcProxy) in Create() 29 CHECK_AND_RETURN_RET_LOG(ipcProxy != nullptr, nullptr, "ipcProxy is nullptr.."); in Create() 30 std::shared_ptr<ScreenCaptureMonitorClient> scmClient = std::make_shared<ScreenCaptureMonitorClient>(ipcProxy); in Create() 37 ScreenCaptureMonitorClient::ScreenCaptureMonitorClient(const sptr<IStandardScreenCaptureMonitorService> &ipcProxy) in ScreenCaptureMonitorClient() argument 38 : screenCaptureMonitorProxy_(ipcProxy) in ScreenCaptureMonitorClient() 26 Create( const sptr<IStandardScreenCaptureMonitorService> &ipcProxy) Create() argument
|
H A D | screen_capture_monitor_client.h | 28 const sptr<IStandardScreenCaptureMonitorService> &ipcProxy); 29 explicit ScreenCaptureMonitorClient(const sptr<IStandardScreenCaptureMonitorService> &ipcProxy);
|
/foundation/multimedia/player_framework/services/services/transcoder/client/ |
H A D | transcoder_client.cpp | 26 std::shared_ptr<TransCoderClient> TransCoderClient::Create(const sptr<IStandardTransCoderService> &ipcProxy)
in Create() argument 28 CHECK_AND_RETURN_RET_LOG(ipcProxy != nullptr, nullptr, "ipcProxy is nullptr..");
in Create() 30 std::shared_ptr<TransCoderClient> transCoder = std::make_shared<TransCoderClient>(ipcProxy);
in Create() 39 TransCoderClient::TransCoderClient(const sptr<IStandardTransCoderService> &ipcProxy)
in TransCoderClient() argument 40 : transCoderProxy_(ipcProxy)
in TransCoderClient()
|
H A D | transcoder_client.h | 29 static std::shared_ptr<TransCoderClient> Create(const sptr<IStandardTransCoderService> &ipcProxy);
30 explicit TransCoderClient(const sptr<IStandardTransCoderService> &ipcProxy);
|
/foundation/multimedia/player_framework/services/services/avmetadatahelper/client/ |
H A D | avmetadatahelper_client.cpp | 28 const sptr<IStandardAVMetadataHelperService> &ipcProxy) in Create() 30 std::shared_ptr<AVMetadataHelperClient> AVMetadataHelper = std::make_shared<AVMetadataHelperClient>(ipcProxy); in Create() 36 AVMetadataHelperClient::AVMetadataHelperClient(const sptr<IStandardAVMetadataHelperService> &ipcProxy) in AVMetadataHelperClient() argument 37 : avMetadataHelperProxy_(ipcProxy) in AVMetadataHelperClient() 27 Create( const sptr<IStandardAVMetadataHelperService> &ipcProxy) Create() argument
|
H A D | avmetadatahelper_client.h | 28 static std::shared_ptr<AVMetadataHelperClient> Create(const sptr<IStandardAVMetadataHelperService> &ipcProxy); 29 explicit AVMetadataHelperClient(const sptr<IStandardAVMetadataHelperService> &ipcProxy);
|
/foundation/CastEngine/castengine_wifi_display/tests/unittest/interaction/interprocess/ |
H A D | interprocess_unit_test.cpp | 267 auto ipcProxy = std::make_shared<InterIpcProxy>(impl); in HWTEST_F() local 268 EXPECT_NE(ipcProxy, nullptr); in HWTEST_F() 280 auto ipcProxy = std::make_shared<InterIpcProxy>(impl); in HWTEST_F() local 281 EXPECT_NE(ipcProxy, nullptr); in HWTEST_F() 282 auto ret = ipcProxy->SetListenerObject(key, object); in HWTEST_F() 292 auto ipcProxy = std::make_shared<InterIpcProxy>(impl); in HWTEST_F() local 293 EXPECT_NE(ipcProxy, nullptr); in HWTEST_F() 298 auto ret = ipcProxy->DoIpcCommand(msg, replyMsg); in HWTEST_F() 308 auto ipcProxy = std::make_shared<InterIpcProxy>(impl); in HWTEST_F() local 309 EXPECT_NE(ipcProxy, nullpt in HWTEST_F() [all...] |
/foundation/multimedia/player_framework/services/services/recorder/client/ |
H A D | recorder_client.h | 29 static std::shared_ptr<RecorderClient> Create(const sptr<IStandardRecorderService> &ipcProxy); 30 explicit RecorderClient(const sptr<IStandardRecorderService> &ipcProxy);
|
H A D | recorder_client.cpp | 26 std::shared_ptr<RecorderClient> RecorderClient::Create(const sptr<IStandardRecorderService> &ipcProxy) in Create() argument 28 CHECK_AND_RETURN_RET_LOG(ipcProxy != nullptr, nullptr, "ipcProxy is nullptr.."); in Create() 30 std::shared_ptr<RecorderClient> recorder = std::make_shared<RecorderClient>(ipcProxy); in Create() 39 RecorderClient::RecorderClient(const sptr<IStandardRecorderService> &ipcProxy) in RecorderClient() argument 40 : recorderProxy_(ipcProxy) in RecorderClient()
|
/foundation/multimedia/player_framework/services/services/media_data_source/ipc/ |
H A D | media_data_source_proxy.cpp | 63 MediaDataCallback::MediaDataCallback(const sptr<IStandardMediaDataSource> &ipcProxy) in MediaDataCallback() argument 64 : callbackProxy_(ipcProxy) in MediaDataCallback()
|
H A D | media_data_source_proxy.h | 27 explicit MediaDataCallback(const sptr<IStandardMediaDataSource> &ipcProxy);
|
/foundation/multimedia/player_framework/services/services/player/client/ |
H A D | player_client.h | 29 static std::shared_ptr<PlayerClient> Create(const sptr<IStandardPlayerService> &ipcProxy); 30 explicit PlayerClient(const sptr<IStandardPlayerService> &ipcProxy);
|
/foundation/multimedia/av_codec/services/services/codec/client/ |
H A D | codec_client.cpp | 25 int32_t CodecClient::Create(const sptr<IStandardCodecService> &ipcProxy, std::shared_ptr<ICodecService> &codec) in Create() argument 28 CHECK_AND_RETURN_RET_LOG(ipcProxy != nullptr, AVCS_ERR_INVALID_VAL, "Ipc proxy is nullptr."); in Create() 30 codec = std::make_shared<CodecClient>(ipcProxy); in Create() 41 CodecClient::CodecClient(const sptr<IStandardCodecService> &ipcProxy) in CodecClient() argument 42 : codecProxy_(ipcProxy), syncMutex_(std::make_shared<std::recursive_mutex>()) in CodecClient()
|
H A D | codec_client.h | 36 static int32_t Create(const sptr<IStandardCodecService> &ipcProxy, std::shared_ptr<ICodecService> &codec); 37 explicit CodecClient(const sptr<IStandardCodecService> &ipcProxy);
|
/foundation/communication/ipc/ipc/native/src/mock/source/ |
H A D | dbinder_databus_invoker.cpp | 72 sptr<IPCObjectProxy> ipcProxy = reinterpret_cast<IPCObjectProxy *>(current->FindOrNewObject(handle).GetRefPtr()); in NewSessionOfBinderProxy() local 73 if (ipcProxy == nullptr) { in NewSessionOfBinderProxy() 79 if (ipcProxy->GetProto() != IRemoteObject::IF_PROT_BINDER) { in NewSessionOfBinderProxy() 90 return GetSessionForProxy(ipcProxy, session, localDeviceID); in NewSessionOfBinderProxy() 93 std::shared_ptr<DBinderSessionObject> DBinderDatabusInvoker::GetSessionForProxy(sptr<IPCObjectProxy> ipcProxy, in GetSessionForProxy() argument 96 uint32_t handle = ipcProxy->GetHandle(); in GetSessionForProxy() 97 std::string sessionName = ipcProxy->GetSessionName(); in GetSessionForProxy() 113 int err = ipcProxy->InvokeListenThread(data, reply); in GetSessionForProxy()
|