/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_base_test/ |
H A D | mock_distributed_device_profile_client.cpp | 102 int32_t DistributedDeviceProfileClient::DeleteServiceProfile(const std::string& deviceId, in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileClient
|
/foundation/deviceprofile/device_info_manager/services/core/test/unittest/ |
H A D | device_profile_manager_test.cpp | 975 * @tc.desc: DeleteServiceProfile succeed. 990 int32_t ret = DeviceProfileManager::GetInstance().DeleteServiceProfile(deviceId, serviceName); in HWTEST_F() 996 * @tc.desc: DeleteServiceProfile failed, the profile is invalid. 1004 int32_t ret = DeviceProfileManager::GetInstance().DeleteServiceProfile(deviceId, serviceName); in HWTEST_F() 1009 ret = DeviceProfileManager::GetInstance().DeleteServiceProfile(deviceId, serviceName); in HWTEST_F() 1015 * @tc.desc: DeleteServiceProfile failed, deviceProfileStore is nullptr. 1024 int32_t ret = DeviceProfileManager::GetInstance().DeleteServiceProfile(deviceId, serviceName); in HWTEST_F() 1031 * @tc.desc: DeleteServiceProfile failed, DeleteServiceProfile fail. 1042 int32_t ret = DeviceProfileManager::GetInstance().DeleteServiceProfile(deviceI in HWTEST_F() [all...] |
H A D | profile_cache_test.cpp | 250 int32_t ret = ProfileCache::GetInstance().DeleteServiceProfile(devId, serName); in HWTEST_F() 254 ret = ProfileCache::GetInstance().DeleteServiceProfile(devId, serName); in HWTEST_F() 258 ret = ProfileCache::GetInstance().DeleteServiceProfile(devId, serName); in HWTEST_F() 262 ret = ProfileCache::GetInstance().DeleteServiceProfile(devId, serName); in HWTEST_F()
|
H A D | dp_profile_service_test.cpp | 255 int32_t ret = DistributedDeviceProfileServiceNew::GetInstance().DeleteServiceProfile(devid, serName); in HWTEST_F()
|
H A D | distributed_device_profile_stub_new_test.cpp | 54 int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName) override;
182 int32_t MockDistributedDeviceProfileStubNew::DeleteServiceProfile(const std::string& deviceId,
in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::MockDistributedDeviceProfileStubNew
|
H A D | distributed_device_profile_client_kv_test.cpp | 339 * @tc.desc: DeleteServiceProfile success 345 int32_t errCode = DistributedDeviceProfileClient::GetInstance().DeleteServiceProfile( in HWTEST_F()
|
/foundation/deviceprofile/device_info_manager/interfaces/innerkits/core/include/ |
H A D | distributed_device_profile_client.h | 63 int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName);
|
H A D | distributed_device_profile_proxy.h | 59 int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName) override;
|
/foundation/deviceprofile/device_info_manager/services/core/include/utils/ |
H A D | profile_control_utils.h | 52 static int32_t DeleteServiceProfile(std::shared_ptr<IKVAdapter> kvStore, const std::string& deviceId,
|
H A D | profile_cache.h | 63 int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName);
|
/foundation/deviceprofile/device_info_manager/common/include/interfaces/ |
H A D | i_distributed_device_profile.h | 55 virtual int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName) = 0;
|
/foundation/deviceprofile/device_info_manager/services/core/include/deviceprofilemanager/ |
H A D | device_profile_manager.h | 59 int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName);
|
/foundation/deviceprofile/device_info_manager/services/core/include/ |
H A D | distributed_device_profile_service_new.h | 61 int32_t DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName) override;
|
/foundation/deviceprofile/device_info_manager/interfaces/innerkits/core/src/ |
H A D | distributed_device_profile_client.cpp | 288 int32_t DistributedDeviceProfileClient::DeleteServiceProfile(const std::string& deviceId, in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileClient 296 return dpService->DeleteServiceProfile(deviceId, serviceName); in DeleteServiceProfile()
|
H A D | distributed_device_profile_proxy.cpp | 249 int32_t DistributedDeviceProfileProxy::DeleteServiceProfile(const std::string& deviceId, in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileProxy
|
/foundation/deviceprofile/device_info_manager/services/core/src/utils/ |
H A D | profile_control_utils.cpp | 414 int32_t ProfileControlUtils::DeleteServiceProfile(std::shared_ptr<IKVAdapter> kvStore, const std::string& deviceId, in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::ProfileControlUtils 432 HILOGE("DeleteServiceProfile fail!"); in DeleteServiceProfile() 435 ProfileCache::GetInstance().DeleteServiceProfile(deviceId, serviceName); in DeleteServiceProfile()
|
H A D | profile_cache.cpp | 284 int32_t ProfileCache::DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName) in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::ProfileCache
|
/foundation/deviceprofile/device_info_manager/services/core/src/ |
H A D | distributed_device_profile_service_new.cpp | 441 int32_t DistributedDeviceProfileServiceNew::DeleteServiceProfile(const std::string& deviceId, in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileServiceNew 448 HILOGD("CheckCallerPermission success interface DeleteServiceProfile"); in DeleteServiceProfile() 449 int32_t ret = DeviceProfileManager::GetInstance().DeleteServiceProfile(deviceId, serviceName); in DeleteServiceProfile()
|
H A D | distributed_device_profile_stub_new.cpp | 434 int32_t ret = DeleteServiceProfile(deviceId, serviceName); in DeleteServiceProfileInner()
|
/foundation/deviceprofile/device_info_manager/services/core/src/deviceprofilemanager/ |
H A D | device_profile_manager.cpp | 301 int32_t DeviceProfileManager::DeleteServiceProfile(const std::string& deviceId, const std::string& serviceName) in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::DeviceProfileManager 307 res = ProfileControlUtils::DeleteServiceProfile(deviceProfileStore_, deviceId, serviceName); in DeleteServiceProfile() 310 HILOGE("DeleteServiceProfile fail, reason: %{public}d!", res); in DeleteServiceProfile() 313 HILOGD("DeleteServiceProfile success"); in DeleteServiceProfile()
|
/foundation/deviceprofile/device_info_manager/old/services/core/src/ |
H A D | distributed_device_profile_stub.cpp | 588 int32_t ret = DistributedDeviceProfileServiceNew::GetInstance().DeleteServiceProfile(deviceId, serviceName); in DeleteServiceProfileInner()
|
/foundation/distributedhardware/device_manager/test/unittest/mock/ |
H A D | mock_distributed_device_profile_client.cpp | 678 int32_t DistributedDeviceProfileClient::DeleteServiceProfile(const std::string& deviceId, in DeleteServiceProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileClient
|