/foundation/distributedhardware/device_manager/services/service/include/ |
H A D | i_dm_service_impl_ext.h | 60 const std::map<std::string, std::string> &unbindParam) = 0;
|
H A D | device_manager_service.h | 184 const std::map<std::string, std::string> &unbindParam);
|
/foundation/distributedhardware/device_manager/test/unittest/ |
H A D | UTTest_device_manager_service_two.cpp | 143 std::map<std::string, std::string> unbindParam; in HWTEST_F() local 144 unbindParam[PARAM_KEY_META_TYPE] = "1"; in HWTEST_F() 145 DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); in HWTEST_F()
|
H A D | UTTest_device_manager_impl.cpp | 1772 * set unbindParam null
1783 std::map<std::string, std::string> unbindParam;
in HWTEST_F() local 1786 int32_t ret = DeviceManager::GetInstance().BindTarget(pkgName, targetId, unbindParam, callback);
in HWTEST_F() 1788 ret = DeviceManager::GetInstance().UnbindTarget(pkgName, targetId, unbindParam, uncallback);
in HWTEST_F() 1794 ret = DeviceManager::GetInstance().BindTarget(pkgName, targetId, unbindParam, callback);
in HWTEST_F() 1796 ret = DeviceManager::GetInstance().UnbindTarget(pkgName, targetId, unbindParam, uncallback);
in HWTEST_F() 1799 ret = DeviceManager::GetInstance().BindTarget(pkgName, targetId, unbindParam, callback);
in HWTEST_F() 1801 ret = DeviceManager::GetInstance().UnbindTarget(pkgName, targetId, unbindParam, uncallback);
in HWTEST_F()
|
H A D | UTTest_device_manager_service.cpp | 2005 std::map<std::string, std::string> unbindParam; in HWTEST_F() local 2006 int32_t ret = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); in HWTEST_F() 2014 std::map<std::string, std::string> unbindParam; in HWTEST_F() local 2015 int32_t ret = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); in HWTEST_F() 2023 std::map<std::string, std::string> unbindParam; in HWTEST_F() local 2024 int32_t ret = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); in HWTEST_F()
|
/foundation/CastEngine/castengine_cast_framework/service/src/device_manager/src/ |
H A D | connection_manager.cpp | 352 std::map<std::string, std::string> unbindParam{}; in BindTarget() 354 DeviceManager::GetInstance().UnbindTarget(PKG_NAME, targetId, unbindParam, nullptr); in BindTarget() 356 unbindParam.insert( in BindTarget() 358 DeviceManager::GetInstance().UnbindTarget(PKG_NAME, targetId, unbindParam, nullptr); in BindTarget()
|
/foundation/distributedhardware/device_manager/services/service/src/ |
H A D | device_manager_service.cpp | 1384 const std::map<std::string, std::string> &unbindParam) in UnbindTarget() 1399 if (unbindParam.find(PARAM_KEY_META_TYPE) == unbindParam.end()) { in UnbindTarget() 1403 return dmServiceImplExt_->UnbindTargetExt(pkgName, targetId, unbindParam); in UnbindTarget() 1383 UnbindTarget(const std::string &pkgName, const PeerTargetId &targetId, const std::map<std::string, std::string> &unbindParam) UnbindTarget() argument
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/ |
H A D | device_manager.h | 495 * @param unbindParam unbind parameters.
500 std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) = 0;
|
H A D | device_manager_impl.h | 366 std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) override;
|
/foundation/distributedhardware/device_manager/services/service/src/ipc/standard/ |
H A D | ipc_cmd_parser.cpp | 1050 std::map<std::string, std::string> unbindParam; in ON_IPC_CMD() local 1051 ParseMapFromJsonString(unbindParamStr, unbindParam); in ON_IPC_CMD() 1052 int32_t result = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); in ON_IPC_CMD()
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ipc/standard/ |
H A D | ipc_cmd_parser.cpp | 1268 std::string unbindParam = pReq->GetBindParam(); in ON_IPC_SET_REQUEST() local 1278 if (!data.WriteString(unbindParam)) { in ON_IPC_SET_REQUEST()
|
/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ |
H A D | device_manager_impl.cpp | 1919 std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) in UnbindTarget() 1926 std::string unbindParamStr = ConvertMapToJsonString(unbindParam); in UnbindTarget() 1918 UnbindTarget(const std::string &pkgName, const PeerTargetId &targetId, std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) UnbindTarget() argument
|