/ohos5.0/foundation/distributedhardware/device_manager/test/unittest/ |
H A D | UTTest_device_manager_service_two.cpp | 153 std::map<std::string, std::string> unbindParam; variable 154 unbindParam[PARAM_KEY_META_TYPE] = "1"; 155 DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam);
|
H A D | UTTest_device_manager_impl.cpp | 1783 std::map<std::string, std::string> unbindParam; variable 1786 int32_t ret = DeviceManager::GetInstance().BindTarget(pkgName, targetId, unbindParam, callback); 1788 ret = DeviceManager::GetInstance().UnbindTarget(pkgName, targetId, unbindParam, uncallback); 1794 ret = DeviceManager::GetInstance().BindTarget(pkgName, targetId, unbindParam, callback); 1796 ret = DeviceManager::GetInstance().UnbindTarget(pkgName, targetId, unbindParam, uncallback); 1799 ret = DeviceManager::GetInstance().BindTarget(pkgName, targetId, unbindParam, callback); 1801 ret = DeviceManager::GetInstance().UnbindTarget(pkgName, targetId, unbindParam, uncallback);
|
H A D | UTTest_device_manager_service.cpp | 1855 std::map<std::string, std::string> unbindParam; variable 1856 int32_t ret = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); 1864 std::map<std::string, std::string> unbindParam; variable 1865 int32_t ret = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); 1873 std::map<std::string, std::string> unbindParam; variable 1874 int32_t ret = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam);
|
/ohos5.0/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);
|
/ohos5.0/foundation/distributedhardware/device_manager/services/service/src/ |
H A D | device_manager_service.cpp | 1330 const std::map<std::string, std::string> &unbindParam) in UnbindTarget() argument 1345 if (unbindParam.find(PARAM_KEY_META_TYPE) == unbindParam.end()) { in UnbindTarget() 1349 return dmServiceImplExt_->UnbindTargetExt(pkgName, targetId, unbindParam); in UnbindTarget()
|
/ohos5.0/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/include/ |
H A D | device_manager.h | 500 …std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) =…
|
H A D | device_manager_impl.h | 366 …std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) o…
|
/ohos5.0/foundation/distributedhardware/device_manager/services/service/src/ipc/standard/ |
H A D | ipc_cmd_parser.cpp | 1049 std::map<std::string, std::string> unbindParam; in ON_IPC_CMD() local 1050 ParseMapFromJsonString(unbindParamStr, unbindParam); in ON_IPC_CMD() 1051 … int32_t result = DeviceManagerService::GetInstance().UnbindTarget(pkgName, targetId, unbindParam); in ON_IPC_CMD()
|
/ohos5.0/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ipc/standard/ |
H A D | ipc_cmd_parser.cpp | 1264 std::string unbindParam = pReq->GetBindParam(); in ON_IPC_SET_REQUEST() local 1274 if (!data.WriteString(unbindParam)) { in ON_IPC_SET_REQUEST()
|
/ohos5.0/foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ |
H A D | device_manager_impl.cpp | 1802 std::map<std::string, std::string> &unbindParam, std::shared_ptr<UnbindTargetCallback> callback) in UnbindTarget() argument 1809 std::string unbindParamStr = ConvertMapToJsonString(unbindParam); in UnbindTarget()
|