Home
last modified time | relevance | path

Searched refs:kvStoreValue (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/base/notification/distributed_notification_service/services/distributed/src/
H A Ddistributed_preferences_database.cpp105 DistributedKv::Value kvStoreValue(value); in PutToDistributedDB() local
106 DistributedKv::Status status = kvStore_->Put(kvStoreKey, kvStoreValue); in PutToDistributedDB()
127 DistributedKv::Value kvStoreValue; in GetFromDistributedDB() local
128 DistributedKv::Status status = kvStore_->Get(kvStoreKey, kvStoreValue); in GetFromDistributedDB()
133 value = kvStoreValue.ToString(); in GetFromDistributedDB()
169 DistributedKv::Value kvStoreValue; in DeleteToDistributedDB() local
H A Ddistributed_database.cpp152 DistributedKv::Value kvStoreValue(value); in PutToDistributedDB() local
153 DistributedKv::Status status = kvStore_->Put(kvStoreKey, kvStoreValue); in PutToDistributedDB()
177 DistributedKv::Value kvStoreValue; in GetFromDistributedDB() local
178 DistributedKv::Status status = kvStore_->Get(kvStoreKey, kvStoreValue); in GetFromDistributedDB()
184 value = kvStoreValue.ToString(); in GetFromDistributedDB()
H A Ddistributed_screen_status_manager.cpp243 DistributedKv::Value kvStoreValue = screenOn ? SCREEN_STATUS_VALUE_ON : SCREEN_STATUS_VALUE_OFF; in SetLocalScreenStatus() local
244 DistributedKv::Status status = kvStore_->Put(kvStoreKey, kvStoreValue); in SetLocalScreenStatus()