/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/lowlatency/ |
H A D | low_latency.cpp | 48 void LowLatency::EnableLowLatency(DHType dhType) in EnableLowLatency() argument 50 DHLOGI("Start EnableLowLatency dhType: %{public}#X", dhType); in EnableLowLatency() 51 if (dhType <= DHType::UNKNOWN || dhType >= DHType::MAX_DH) { in EnableLowLatency() 52 DHLOGE("DHType is invalid, dhType: %{public}" PRIu32, (uint32_t)dhType); in EnableLowLatency() 58 DHLOGD("Open LowLatency dhType: %{public}#X", dhType); in EnableLowLatency() 65 lowLatencySwitchSet_.insert(dhType); in EnableLowLatency() 69 DisableLowLatency(DHType dhType) DisableLowLatency() argument [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/localhardwaremanager/ |
H A D | local_hardware_manager.cpp | 54 for (auto dhType : allCompTypes) { in Init() 57 int32_t status = ComponentLoader::GetInstance().GetHardwareHandler(dhType, hardwareHandler); in Init() 59 DHLOGE("GetHardwareHandler %{public}#X failed", dhType); in Init() 63 DHLOGE("Initialize %{public}#X failed", dhType); in Init() 67 DHQueryTraceStart(dhType); in Init() 68 QueryLocalHardware(dhType, hardwareHandler); in Init() 72 ComponentLoader::GetInstance().ReleaseHardwareHandler(dhType); in Init() 75 compToolFuncsMap_[dhType] = hardwareHandler; in Init() 76 std::shared_ptr<PluginListener> listener = std::make_shared<PluginListenerImpl>(dhType); in Init() 77 pluginListenerMap_[dhType] in Init() 103 QueryLocalHardware(const DHType dhType, IHardwareHandler *hardwareHandler) QueryLocalHardware() argument 131 AddLocalCapabilityInfo(const std::vector<DHItem> &dhItems, const DHType dhType, std::vector<std::shared_ptr<CapabilityInfo>> &capabilityInfos) AddLocalCapabilityInfo() argument 145 AddLocalMetaCapInfo(const std::vector<DHItem> &dhItems, const DHType dhType, std::vector<std::shared_ptr<MetaCapabilityInfo>> &metaCapInfos) AddLocalMetaCapInfo() argument 164 CheckNonExistCapabilityInfo(const std::vector<DHItem> &dhItems, const DHType dhType) CheckNonExistCapabilityInfo() argument 200 GetLocalCapabilityMapByPrefix(const DHType dhType, CapabilityInfoMap &capabilityInfoMap) GetLocalCapabilityMapByPrefix() argument [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/lowlatency/lowlatency/src/ |
H A D | low_latency_test.cpp | 47 DHType dhType = DHType::UNKNOWN; in HWTEST_F() local 48 LowLatency::GetInstance().EnableLowLatency(dhType); in HWTEST_F() 60 DHType dhType = DHType::CAMERA; in HWTEST_F() local 61 LowLatency::GetInstance().EnableLowLatency(dhType); in HWTEST_F() 74 DHType dhType = DHType::CAMERA; in HWTEST_F() local 75 LowLatency::GetInstance().EnableLowLatency(dhType); in HWTEST_F() 91 DHType dhType = DHType::CAMERA; in HWTEST_F() local 92 LowLatency::GetInstance().EnableLowLatency(dhType); in HWTEST_F() 104 DHType dhType = DHType::UNKNOWN; in HWTEST_F() local 105 LowLatency::GetInstance().DisableLowLatency(dhType); in HWTEST_F() 117 DHType dhType = DHType::CAMERA; HWTEST_F() local [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/componentloader/ |
H A D | component_loader.cpp | 224 compVersions.dhType = cCfg.type; in GetCompVersionFromComConfig() 405 int32_t ComponentLoader::GetHardwareHandler(const DHType dhType, IHardwareHandler *&hardwareHandlerPtr) in GetHardwareHandler() argument 407 if (compHandlerMap_.find(dhType) == compHandlerMap_.end()) { in GetHardwareHandler() 408 DHLOGE("DHType not exist, dhType: %{public}" PRIu32, (uint32_t)dhType); in GetHardwareHandler() 412 if (compHandlerMap_[dhType].hardwareHandler == nullptr) { in GetHardwareHandler() 417 GetHardwareClass getHardwareClassHandler = (GetHardwareClass)dlsym(compHandlerMap_[dhType].hardwareHandler, in GetHardwareHandler() 421 dlclose(compHandlerMap_[dhType].hardwareHandler); in GetHardwareHandler() 422 compHandlerMap_[dhType].hardwareHandler = nullptr; in GetHardwareHandler() 429 int32_t ComponentLoader::GetSource(const DHType dhType, IDistributedHardwareSourc argument 453 GetSink(const DHType dhType, IDistributedHardwareSink *&sinkPtr) GetSink() argument 558 ReleaseHardwareHandler(const DHType dhType) ReleaseHardwareHandler() argument 572 ReleaseSource(const DHType dhType) ReleaseSource() argument 586 ReleaseSink(const DHType dhType) ReleaseSink() argument 600 IsDHTypeExist(DHType dhType) IsDHTypeExist() argument 609 GetSourceSaId(const DHType dhType) GetSourceSaId() argument [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/componentmanager/ |
H A D | component_manager.cpp | 160 DHLOGI("Register DH State listener, dhType: %{public}" PRIu32, (uint32_t)item.first); in RegisterDHStateListener() 175 DHLOGI("Register Data Sync Trigger listener, dhType: %{public}" PRIu32, (uint32_t)item.first); in RegisterDataSyncTriggerListener() 236 DHLOGI("Unregister DH State listener, dhType: %{public}" PRIu32, (uint32_t)item.first); in UnregisterDHStateListener() 248 DHLOGI("Unregister Data Sync Trigger listener, dhType: %{public}" PRIu32, (uint32_t)item.first); in UnregisterDataSyncTriggerListener() 321 ActionResult ComponentManager::StartSource(DHType dhType) in StartSource() argument 323 DHLOGI("Start Source, dhType: %{public}" PRIu32, (uint32_t)dhType); in StartSource() 325 if (compSource_.find(dhType) == compSource_.end()) { in StartSource() 326 DHLOGE("Component for DHType: %{public}" PRIu32 " not init source handler", (uint32_t)dhType); in StartSource() 329 if (compSource_[dhType] in StartSource() 378 StartSink(DHType dhType) StartSink() argument 532 Enable(const std::string &networkId, const std::string &uuid, const std::string &dhId, const DHType dhType) Enable() argument 598 RetryGetEnableParam(const std::string &networkId, const std::string &uuid, const std::string &dhId, const DHType dhType, EnableParam ¶m) RetryGetEnableParam() argument 620 Disable(const std::string &networkId, const std::string &uuid, const std::string &dhId, const DHType dhType) Disable() argument 669 GetEnableCapParam(const std::string &networkId, const std::string &uuid, DHType dhType, EnableParam ¶m, std::shared_ptr<CapabilityInfo> capability) GetEnableCapParam() argument 718 GetEnableMetaParam(const std::string &networkId, const std::string &uuid, DHType dhType, EnableParam ¶m, std::shared_ptr<MetaCapabilityInfo> metaCapPtr) GetEnableMetaParam() argument 793 GetEnableParam(const std::string &networkId, const std::string &uuid, const std::string &dhId, DHType dhType, EnableParam ¶m) GetEnableParam() argument 822 GetVersionFromVerMgr(const std::string &uuid, const DHType dhType, std::string &version, bool isSink) GetVersionFromVerMgr() argument 842 GetVersionFromVerInfoMgr(const std::string &uuid, const DHType dhType, std::string &version, bool isSink) GetVersionFromVerInfoMgr() argument 868 GetVersion(const std::string &uuid, DHType dhType, std::string &version, bool isSink) GetVersion() argument 908 Recover(DHType dhType) Recover() argument 913 DoRecover(DHType dhType) DoRecover() argument 925 ReStartSA(DHType dhType) ReStartSA() argument 941 RecoverDistributedHardware(DHType dhType) RecoverDistributedHardware() argument 1023 GetDHSourceInstance(DHType dhType) GetDHSourceInstance() argument [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/fuzztest/componentloader_fuzzer/ |
H A D | componentloader_fuzzer.cpp | 43 DHType dhType = dhTypeFuzz[data[0] % DH_TYPE_SIZE]; in ComponentManagerFuzzTest() local 46 ComponentLoader::GetInstance().GetHardwareHandler(dhType, hardwareHandlerPtr); in ComponentManagerFuzzTest() 48 ComponentLoader::GetInstance().GetSource(dhType, sourcePtr); in ComponentManagerFuzzTest() 50 ComponentLoader::GetInstance().GetSink(dhType, sinkPtr); in ComponentManagerFuzzTest() 52 ComponentLoader::GetInstance().ReleaseHardwareHandler(dhType); in ComponentManagerFuzzTest() 53 ComponentLoader::GetInstance().ReleaseSource(dhType); in ComponentManagerFuzzTest() 54 ComponentLoader::GetInstance().ReleaseSink(dhType); in ComponentManagerFuzzTest()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/componentmanager/ |
H A D | component_manager.h | 57 const DHType dhType); 59 const DHType dhType); 63 void Recover(DHType dhType); 67 IDistributedHardwareSource* GetDHSourceInstance(DHType dhType); 101 ActionResult StartSource(DHType dhType); 104 ActionResult StartSink(DHType dhType); 108 DHType dhType, EnableParam ¶m); 109 int32_t GetVersionFromVerMgr(const std::string &uuid, const DHType dhType, std::string &version, bool isSink); 110 int32_t GetVersionFromVerInfoMgr(const std::string &uuid, const DHType dhType, std::string &version, bool isSink); 111 int32_t GetVersion(const std::string &uuid, DHType dhType, st [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/localhardwaremanager/localhardwaremanager/src/ |
H A D | local_hardware_manager_test.cpp | 55 DHType dhType = DHType::INPUT; in HWTEST_F() local 56 LocalHardwareManager::GetInstance().CheckNonExistCapabilityInfo(dhItems, dhType); in HWTEST_F() 69 DHType dhType = DHType::AUDIO; in HWTEST_F() local 70 LocalHardwareManager::GetInstance().CheckNonExistCapabilityInfo(dhItems, dhType); in HWTEST_F() 82 DHType dhType = DHType::INPUT; in HWTEST_F() local 84 LocalHardwareManager::GetInstance().GetLocalCapabilityMapByPrefix(dhType, capabilityInfoMap); in HWTEST_F() 96 DHType dhType = DHType::GPS; in HWTEST_F() local 99 LocalHardwareManager::GetInstance().GetLocalCapabilityMapByPrefix(dhType, capabilityInfoMap); in HWTEST_F()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/componentmanager/component_manager/src/ |
H A D | component_manager_test.cpp | 246 .dhType = DHType::CAMERA, in HWTEST_F() 254 verInfo1.compVersions.insert(std::pair<DHType, CompVersion>(compVersions1.dhType, compVersions1)); in HWTEST_F() 275 .dhType = DHType::CAMERA, in HWTEST_F() 283 dhVersion.compVersions.insert(std::pair<DHType, CompVersion>(compVersions1.dhType, compVersions1)); in HWTEST_F() 338 DHType dhType = DHType::AUDIO; in HWTEST_F() local 339 auto ret = ComponentManager::GetInstance().StartSource(dhType); in HWTEST_F() 363 DHType dhType = DHType::AUDIO; in HWTEST_F() local 364 auto ret = ComponentManager::GetInstance().StartSink(dhType); in HWTEST_F() 444 DHType dhType = DHType::CAMERA; in HWTEST_F() local 445 int32_t ret = ComponentManager::GetInstance().Enable(networkId, uuid, dhId, dhType); in HWTEST_F() 460 DHType dhType = DHType::CAMERA; HWTEST_F() local 479 DHType dhType = DHType::INPUT; HWTEST_F() local 495 DHType dhType = DHType::INPUT; HWTEST_F() local 541 DHType dhType = DHType::CAMERA; HWTEST_F() local 555 DHType dhType = DHType::CAMERA; HWTEST_F() local 571 DHType dhType = DHType::CAMERA; HWTEST_F() local 585 DHType dhType = DHType::CAMERA; HWTEST_F() local 600 DHType dhType = DHType::CAMERA; HWTEST_F() local 621 DHType dhType = DHType::CAMERA; HWTEST_F() local 635 DHType dhType = DHType::CAMERA; HWTEST_F() local 652 DHType dhType = DHType::CAMERA; HWTEST_F() local 694 DHType dhType = DHType::CAMERA; HWTEST_F() local 707 DHType dhType = DHType::CAMERA; HWTEST_F() local 720 DHType dhType = DHType::CAMERA; HWTEST_F() local 733 DHType dhType = DHType::CAMERA; HWTEST_F() local 746 DHType dhType = DHType::CAMERA; HWTEST_F() local 761 DHType dhType = DHType::CAMERA; HWTEST_F() local [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/task/src/ |
H A D | mock_online_task.cpp | 28 const std::string &dhId, const DHType dhType) : OnLineTask(networkId, uuid, udid, dhId, dhType) in MockOnLineTask() 47 .dhType = devInfo.dhType in CreateEnableTask() 62 .dhType = devInfo.dhType in CreateMetaEnableTask() 27 MockOnLineTask(const std::string &networkId, const std::string &uuid, const std::string &udid, const std::string &dhId, const DHType dhType) MockOnLineTask() argument
|
H A D | mock_offline_task.cpp | 28 const std::string &dhId, const DHType dhType) : OffLineTask(networkId, uuid, udid, dhId, dhType) in MockOffLineTask() 38 .dhType = devInfo.dhType in CreateDisableTask() 53 .dhType = devInfo.dhType in CreateMetaDisableTask() 27 MockOffLineTask(const std::string &networkId, const std::string &uuid, const std::string &udid, const std::string &dhId, const DHType dhType) MockOffLineTask() argument
|
H A D | mock_task_factory.cpp | 37 taskParam.dhId, taskParam.dhType); in CreateTask() 42 taskParam.dhId, taskParam.dhType); in CreateTask() 47 taskParam.dhId, taskParam.dhType); in CreateTask() 52 taskParam.dhId, taskParam.dhType); in CreateTask() 57 taskParam.dhId, taskParam.dhType); in CreateTask() 62 taskParam.dhId, taskParam.dhType); in CreateTask()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/localhardwaremanager/ |
H A D | local_hardware_manager.h | 41 void QueryLocalHardware(const DHType dhType, IHardwareHandler *hardwareHandler); 42 void AddLocalCapabilityInfo(const std::vector<DHItem> &dhItems, const DHType dhType, 44 void AddLocalMetaCapInfo(const std::vector<DHItem> &dhItems, const DHType dhType, 46 void CheckNonExistCapabilityInfo(const std::vector<DHItem> &dhItems, const DHType dhType); 47 void GetLocalCapabilityMapByPrefix(const DHType dhType, CapabilityInfoMap &capabilityInfoMap);
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/componentloader/ |
H A D | component_loader.h | 74 int32_t GetHardwareHandler(const DHType dhType, IHardwareHandler *&hardwareHandlerPtr); 75 int32_t GetSource(const DHType dhType, IDistributedHardwareSource *&sourcePtr); 76 int32_t GetSink(const DHType dhType, IDistributedHardwareSink *&sinkPtr); 78 int32_t ReleaseHardwareHandler(const DHType dhType); 79 int32_t ReleaseSource(const DHType dhType); 80 int32_t ReleaseSink(const DHType dhType); 83 int32_t GetSourceSaId(const DHType dhType); 95 bool IsDHTypeExist(DHType dhType);
|
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/test/unittest/common/ipc/dhfwk_sa_manager/include/ |
H A D | dhfwk_sa_manager_test.h | 113 int32_t PauseDistributedHardware(DHType dhType, const std::string &networkId) in PauseDistributedHardware() argument 115 (void)dhType; in PauseDistributedHardware() 120 int32_t ResumeDistributedHardware(DHType dhType, const std::string &networkId) in ResumeDistributedHardware() argument 122 (void)dhType; in ResumeDistributedHardware() 127 int32_t StopDistributedHardware(DHType dhType, const std::string &networkId) in StopDistributedHardware() argument 129 (void)dhType; in StopDistributedHardware()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/task/ |
H A D | task_factory.cpp | 43 taskParam.dhId, taskParam.dhType); in CreateTask() 48 taskParam.dhId, taskParam.dhType); in CreateTask() 53 taskParam.dhId, taskParam.dhType); in CreateTask() 58 taskParam.dhId, taskParam.dhType); in CreateTask() 63 taskParam.dhId, taskParam.dhType); in CreateTask() 68 taskParam.dhId, taskParam.dhType); in CreateTask()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/distributedhardwarestub/include/ |
H A D | distributed_hardware_stub_test.h | 105 int32_t PauseDistributedHardware(DHType dhType, const std::string &networkId) in PauseDistributedHardware() argument 107 (void)dhType; in PauseDistributedHardware() 112 int32_t ResumeDistributedHardware(DHType dhType, const std::string &networkId) in ResumeDistributedHardware() argument 114 (void)dhType; in ResumeDistributedHardware() 119 int32_t StopDistributedHardware(DHType dhType, const std::string &networkId) in StopDistributedHardware() argument 121 (void)dhType; in StopDistributedHardware()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/ |
H A D | distributed_hardware_service.cpp | 307 int32_t DistributedHardwareService::PauseDistributedHardware(DHType dhType, const std::string &networkId) in PauseDistributedHardware() argument 313 if (sinkMap.find(dhType) == sinkMap.end()) { in PauseDistributedHardware() 314 DHLOGE("PauseDistributedHardware for DHType: %{public}u not init sink handler", (uint32_t)dhType); in PauseDistributedHardware() 317 int32_t ret = sinkMap[dhType]->PauseDistributedHardware(networkId); in PauseDistributedHardware() 319 DHLOGE("PauseDistributedHardware for DHType: %{public}u failed, ret: %{public}d", (uint32_t)dhType, ret); in PauseDistributedHardware() 325 int32_t DistributedHardwareService::ResumeDistributedHardware(DHType dhType, const std::string &networkId) in ResumeDistributedHardware() argument 331 if (sinkMap.find(dhType) == sinkMap.end()) { in ResumeDistributedHardware() 332 DHLOGE("ResumeDistributedHardware for DHType: %{public}u not init sink handler", (uint32_t)dhType); in ResumeDistributedHardware() 335 int32_t ret = sinkMap[dhType]->ResumeDistributedHardware(networkId); in ResumeDistributedHardware() 337 DHLOGE("ResumeDistributedHardware for DHType: %{public}u failed, ret: %{public}d", (uint32_t)dhType, re in ResumeDistributedHardware() 343 StopDistributedHardware(DHType dhType, const std::string &networkId) StopDistributedHardware() argument [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/kits/napi/src/ |
H A D | native_distributedhardwarefwk_js.cpp | 144 DHType dhType = DHType::UNKNOWN; in PauseDistributedHardware() local 147 dhType = DHType::AUDIO; in PauseDistributedHardware() 149 dhType = DHType::CAMERA; in PauseDistributedHardware() 157 int32_t ret = dhFwkKit->PauseDistributedHardware(dhType, std::string(networkId)); in PauseDistributedHardware() 159 DHLOGE("PauseDistributedHardware for DHType: %{public}u filed", (uint32_t)dhType); in PauseDistributedHardware() 166 int32_t ret = dhFwkKit->PauseDistributedHardware(dhType, std::string(networkId)); in PauseDistributedHardware() 168 DHLOGE("PauseDistributedHardware for DHType: %{public}u filed", (uint32_t)dhType); in PauseDistributedHardware() 196 DHType dhType = DHType::UNKNOWN; in ResumeDistributedHardware() local 199 dhType = DHType::AUDIO; in ResumeDistributedHardware() 201 dhType in ResumeDistributedHardware() 248 DHType dhType = DHType::UNKNOWN; StopDistributedHardware() local [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/hidumphelper/ |
H A D | enabled_comps_dump.cpp | 23 void EnabledCompsDump::DumpEnabledComp(const std::string &networkId, const DHType dhType, const std::string &dhId) in DumpEnabledComp() argument 25 HidumpCompInfo info(networkId, dhType, dhId); in DumpEnabledComp() 31 void EnabledCompsDump::DumpDisabledComp(const std::string &networkId, const DHType dhType, const std::string &dhId) in DumpDisabledComp() argument 33 HidumpCompInfo info(networkId, dhType, dhId); in DumpDisabledComp()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/hidumphelper/hidumphelper/src/ |
H A D | hidump_helper_test.cpp | 110 DHType dhType = DHType::CAMERA; in HWTEST_F() local 112 ComponentManager::GetInstance().compSource_.insert(std::make_pair(dhType, sourcePtr)); in HWTEST_F() 126 DHType dhType = DHType::CAMERA; in HWTEST_F() local 128 ComponentManager::GetInstance().compSink_.insert(std::make_pair(dhType, sinkPtr)); in HWTEST_F() 156 DHType dhType = DHType::CAMERA; in HWTEST_F() local 158 EnabledCompsDump::GetInstance().DumpEnabledComp(networkId, dhType, dhId); in HWTEST_F() 189 DHType dhType = DHType::CAMERA; in HWTEST_F() local 190 std::shared_ptr<Task> childrenTask = std::make_shared<OffLineTask>(networkId, uuId, udId, dhId, dhType); in HWTEST_F() 223 DHType dhType = DHType::CAMERA; in HWTEST_F() local 224 std::shared_ptr<CapabilityInfo> capInfo = std::make_shared<CapabilityInfo>(dhId, devId, "Dev1", devTypePad, dhType, in HWTEST_F() [all...] |
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/include/hidumphelper/ |
H A D | enabled_comps_dump.h | 33 HidumpCompInfo(std::string networkId, DHType dhType, std::string dhId) in HidumpCompInfo() 34 : networkId_(networkId), dhId_(dhId), dhType_(dhType) {} in HidumpCompInfo() 46 void DumpEnabledComp(const std::string &networkId, const DHType dhType, const std::string &dhId); 47 void DumpDisabledComp(const std::string &networkId, const DHType dhType, const std::string &dhId);
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/hidumphelper/enabledcompsdump/src/ |
H A D | enabled_comps_dump_test.cpp | 44 DHType dhType = DHType::CAMERA; in HWTEST_F() local 46 EnabledCompsDump::GetInstance().DumpEnabledComp(networkId, dhType, dhId); in HWTEST_F() 59 DHType dhType = DHType::CAMERA; in HWTEST_F() local 61 EnabledCompsDump::GetInstance().DumpDisabledComp(networkId, dhType, dhId); in HWTEST_F()
|
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/test/unittest/common/ipc/distributed_hardware_proxy/include/ |
H A D | distributed_hardware_proxy_test.h | 108 int32_t PauseDistributedHardware(DHType dhType, const std::string &networkId) in PauseDistributedHardware() argument 110 (void)dhType; in PauseDistributedHardware() 115 int32_t ResumeDistributedHardware(DHType dhType, const std::string &networkId) in ResumeDistributedHardware() argument 117 (void)dhType; in ResumeDistributedHardware() 122 int32_t StopDistributedHardware(DHType dhType, const std::string &networkId) in StopDistributedHardware() argument 124 (void)dhType; in StopDistributedHardware()
|
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/fuzztest/distributedfwkservices_fuzzer/ |
H A D | distributedfwkservices_fuzzer.cpp | 93 DHType dhType = DHType::AUDIO; in FwkServicesPauseDistributedHardwareFuzzTest() local 96 service.PauseDistributedHardware(dhType, networkId); in FwkServicesPauseDistributedHardwareFuzzTest() 105 DHType dhType = DHType::AUDIO; in FwkServicesResumeDistributedHardwareFuzzTest() local 108 service.ResumeDistributedHardware(dhType, networkId); in FwkServicesResumeDistributedHardwareFuzzTest() 117 DHType dhType = DHType::AUDIO; in FwkServicesStopDistributedHardwareFuzzTest() local 120 service.StopDistributedHardware(dhType, networkId); in FwkServicesStopDistributedHardwareFuzzTest()
|