Home
last modified time | relevance | path

Searched refs:staticProfileStore_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/deviceprofile/device_info_manager/services/core/src/deviceprofilemanager/
H A Dstatic_profile_manager.cpp52 staticProfileStore_ = std::make_shared<KVAdapter>(APP_ID, STORE_ID, in Init()
56 initResult = staticProfileStore_->Init(); in Init()
67 if (staticProfileStore_ == nullptr) { in UnInit()
71 staticProfileStore_->UnInit(); in UnInit()
72 staticProfileStore_ = nullptr; in UnInit()
90 putResult = ProfileControlUtils::PutCharacteristicProfile(staticProfileStore_, charProfile); in PutCharacteristicProfile()
116 getResult = ProfileControlUtils::GetCharacteristicProfile(staticProfileStore_, deviceId, in GetCharacteristicProfile()
148 …getAllResult = ProfileControlUtils::GetAllCharacteristicProfile(staticProfileStore_, staticCapabil… in GetAllCharacteristicProfile()
205 if (staticProfileStore_ == nullptr) { in E2ESyncStaticProfile()
209 int32_t syncResult = staticProfileStore_->Sync({remoteNetworkId}, SyncMode::PUSH_PULL); in E2ESyncStaticProfile()
/ohos5.0/foundation/deviceprofile/device_info_manager/services/core/include/deviceprofilemanager/
H A Dstatic_profile_manager.h45 std::shared_ptr<IKVAdapter> staticProfileStore_ = nullptr; variable