Home
last modified time | relevance | path

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

/base/notification/distributed_notification_service/services/distributed/src/
Ddistributed_preferences_database.cpp105 DistributedKv::Value kvStoreValue(value); in PutToDistributedDB() local
106 DistributedKv::Status status = kvStore_->Put(kvStoreKey, kvStoreValue); in PutToDistributedDB()
129 DistributedKv::Value kvStoreValue; in GetFromDistributedDB() local
130 DistributedKv::Status status = kvStore_->Get(kvStoreKey, kvStoreValue); in GetFromDistributedDB()
136 value = kvStoreValue.ToString(); in GetFromDistributedDB()
175 DistributedKv::Value kvStoreValue; in DeleteToDistributedDB() local
Ddistributed_database.cpp133 DistributedKv::Value kvStoreValue(value); in PutToDistributedDB() local
134 DistributedKv::Status status = kvStore_->Put(kvStoreKey, kvStoreValue); in PutToDistributedDB()
158 DistributedKv::Value kvStoreValue; in GetFromDistributedDB() local
159 DistributedKv::Status status = kvStore_->Get(kvStoreKey, kvStoreValue); in GetFromDistributedDB()
165 value = kvStoreValue.ToString(); in GetFromDistributedDB()
Ddistributed_screen_status_manager.cpp226 DistributedKv::Value kvStoreValue = screenOn ? SCREEN_STATUS_VALUE_ON : SCREEN_STATUS_VALUE_OFF; in SetLocalScreenStatus() local
227 status = kvStore_->Put(kvStoreKey, kvStoreValue); in SetLocalScreenStatus()