/foundation/deviceprofile/device_info_manager/services/core/include/deviceprofilemanager/ |
H A D | static_profile_manager.h | 33 int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile);
|
H A D | switch_profile_manager.h | 36 int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile);
|
H A D | device_profile_manager.h | 52 int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile);
|
/foundation/deviceprofile/device_info_manager/services/core/test/unittest/ |
H A D | device_profile_manager_test.cpp | 521 * @tc.desc: PutCharacteristicProfile succeed. 534 int32_t ret = DeviceProfileManager::GetInstance().PutCharacteristicProfile(charProfile); in HWTEST_F() 540 * @tc.desc: PutCharacteristicProfile failed, the profile is invalid. 552 int32_t ret = DeviceProfileManager::GetInstance().PutCharacteristicProfile(charProfile); in HWTEST_F() 558 * @tc.desc: PutCharacteristicProfile failed, the profile is exist. 577 DeviceProfileManager::GetInstance().PutCharacteristicProfile(charProfile1); in HWTEST_F() 578 int32_t ret = DeviceProfileManager::GetInstance().PutCharacteristicProfile(charProfile2); in HWTEST_F() 584 * @tc.desc: PutCharacteristicProfile failed, deviceProfileStore is nullptr. 598 int32_t ret = DeviceProfileManager::GetInstance().PutCharacteristicProfile(charProfile10); in HWTEST_F() 605 * @tc.desc: PutCharacteristicProfile faile [all...] |
H A D | switch_profile_manager_test.cpp | 100 * @tc.desc: PutCharacteristicProfile 107 int32_t errCode = SwitchProfileManager::GetInstance().PutCharacteristicProfile(charProfile); in HWTEST_F()
|
H A D | static_profile_manager_test.cpp | 97 * @tc.desc: PutCharacteristicProfile 104 int32_t errCode = StaticProfileManager::GetInstance().PutCharacteristicProfile(charProfile); in HWTEST_F()
|
H A D | profile_control_utils_test.cpp | 270 * @tc.desc: PutCharacteristicProfile 282 int32_t ret = profileControlUtils->PutCharacteristicProfile(kvStore, charProfile); in HWTEST_F() 288 * @tc.desc: PutCharacteristicProfile 300 int32_t ret = profileControlUtils->PutCharacteristicProfile(kvStore, charProfile); in HWTEST_F() 306 * @tc.desc: PutCharacteristicProfile 320 int32_t ret = profileControlUtils->PutCharacteristicProfile(kvStore, charProfile); in HWTEST_F() 326 * @tc.desc: PutCharacteristicProfile 340 int32_t ret = profileControlUtils->PutCharacteristicProfile(kvStore, charProfile); in HWTEST_F() 346 * @tc.desc: PutCharacteristicProfile 360 int32_t ret = profileControlUtils->PutCharacteristicProfile(kvStor in HWTEST_F() [all...] |
H A D | dp_profile_service_test.cpp | 204 int32_t ret = DistributedDeviceProfileServiceNew::GetInstance().PutCharacteristicProfile(charProfile); in HWTEST_F()
|
H A D | distributed_device_profile_stub_new_test.cpp | 47 int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile) override;
147 int32_t MockDistributedDeviceProfileStubNew::PutCharacteristicProfile(const CharacteristicProfile& charProfile)
in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::MockDistributedDeviceProfileStubNew
|
H A D | distributed_device_profile_client_kv_test.cpp | 201 * @tc.desc: PutCharacteristicProfile success 213 int32_t errCode = DistributedDeviceProfileClient::GetInstance().PutCharacteristicProfile(charProfile); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_base_test/ |
H A D | mock_distributed_device_profile_client.cpp | 71 int32_t DistributedDeviceProfileClient::PutCharacteristicProfile(const CharacteristicProfile& characteristicProfile) in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileClient
|
/foundation/deviceprofile/device_info_manager/services/core/src/staticcapabilitycollector/ |
H A D | static_capability_collector.cpp | 108 StaticProfileManager::GetInstance().PutCharacteristicProfile(staticCapabilityProfile); in AddStaticCapabilityToDB()
|
/foundation/deviceprofile/device_info_manager/services/core/src/deviceprofilemanager/ |
H A D | switch_profile_manager.cpp | 64 int32_t SwitchProfileManager::PutCharacteristicProfile(const CharacteristicProfile& charProfile) in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::SwitchProfileManager 73 HILOGE("PutCharacteristicProfile fail, reason: %{public}d!", res); in PutCharacteristicProfile() 76 HILOGD("PutCharacteristicProfile success"); in PutCharacteristicProfile()
|
H A D | static_profile_manager.cpp | 84 int32_t StaticProfileManager::PutCharacteristicProfile(const CharacteristicProfile& charProfile) in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::StaticProfileManager 90 putResult = ProfileControlUtils::PutCharacteristicProfile(staticProfileStore_, charProfile); in PutCharacteristicProfile() 92 HILOGI("PutCharacteristicProfile result: %{public}d!", putResult); in PutCharacteristicProfile()
|
/foundation/deviceprofile/device_info_manager/interfaces/innerkits/core/include/ |
H A D | distributed_device_profile_client.h | 56 int32_t PutCharacteristicProfile(const CharacteristicProfile& characteristicProfile);
|
H A D | distributed_device_profile_proxy.h | 52 int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile) override;
|
/foundation/deviceprofile/device_info_manager/services/core/include/utils/ |
H A D | profile_control_utils.h | 36 static int32_t PutCharacteristicProfile(std::shared_ptr<IKVAdapter> kvStore,
|
/foundation/deviceprofile/device_info_manager/common/include/interfaces/ |
H A D | i_distributed_device_profile.h | 48 virtual int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile) = 0;
|
/foundation/deviceprofile/device_info_manager/services/core/include/ |
H A D | distributed_device_profile_service_new.h | 54 int32_t PutCharacteristicProfile(const CharacteristicProfile& charProfile) override;
|
/foundation/deviceprofile/device_info_manager/interfaces/innerkits/core/src/ |
H A D | distributed_device_profile_client.cpp | 231 int32_t DistributedDeviceProfileClient::PutCharacteristicProfile(const CharacteristicProfile& characteristicProfile) in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileClient 238 return dpService->PutCharacteristicProfile(characteristicProfile); in PutCharacteristicProfile()
|
H A D | distributed_device_profile_proxy.cpp | 165 int32_t DistributedDeviceProfileProxy::PutCharacteristicProfile(const CharacteristicProfile& charProfile) in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileProxy
|
/foundation/deviceprofile/device_info_manager/services/core/src/ |
H A D | distributed_device_profile_service_new.cpp | 318 int32_t DistributedDeviceProfileServiceNew::PutCharacteristicProfile(const CharacteristicProfile& charProfile) in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::DistributedDeviceProfileServiceNew 328 int32_t switchRet = SwitchProfileManager::GetInstance().PutCharacteristicProfile(charProfile); in PutCharacteristicProfile() 332 HILOGD("CheckCallerPermission success interface DeviceProfileManager::PutCharacteristicProfile"); in PutCharacteristicProfile() 333 int32_t ret = DeviceProfileManager::GetInstance().PutCharacteristicProfile(charProfile); in PutCharacteristicProfile()
|
H A D | distributed_device_profile_stub_new.cpp | 348 int32_t ret = PutCharacteristicProfile(charProfile); in PutCharacteristicProfileInner()
|
/foundation/deviceprofile/device_info_manager/services/core/src/utils/ |
H A D | profile_control_utils.cpp | 102 int32_t ProfileControlUtils::PutCharacteristicProfile(std::shared_ptr<IKVAdapter> kvStore, in PutCharacteristicProfile() function in OHOS::DistributedDeviceProfile::ProfileControlUtils 122 HILOGE("PutCharacteristicProfile fail!"); in PutCharacteristicProfile() 213 int32_t putCharacteristicResult = PutCharacteristicProfile(kvStore, charProfile); in PutCharacteristicProfileBatch()
|
/foundation/distributeddatamgr/pasteboard/framework/framework/device/ |
H A D | dev_profile.cpp | 158 int32_t errNo = DistributedDeviceProfileClient::GetInstance().PutCharacteristicProfile(profile); in PutEnabledStatus() 160 PASTEBOARD_HILOGD(PASTEBOARD_MODULE_SERVICE, "PutCharacteristicProfile failed, %{public}d", errNo); in PutEnabledStatus()
|