Lines Matching defs:status
177 DistributedKv::Status status = DistributedKv::Status::SUCCESS;
183 status = manager.GetSingleKvStore(options, appId, storeId, oaidKvStore_);
184 if (status == DistributedKv::Status::STORE_NOT_FOUND) {
188 if ((status == DistributedKv::Status::SUCCESS) || (status == DistributedKv::Status::STORE_NOT_FOUND)) {
199 if (status == DistributedKv::Status::STORE_NOT_FOUND) {
203 status = manager.GetSingleKvStore(options, appId, storeId, oaidKvStore_);
204 if (status == DistributedKv::Status::SUCCESS) {
258 DistributedKv::Status status = oaidKvStore_->Get(key, value);
259 if (status == DistributedKv::Status::SUCCESS) {
260 OAID_HILOGI(OAID_MODULE_SERVICE, "%{public}d get value from kvStore", status);
262 OAID_HILOGE(OAID_MODULE_SERVICE, "%{public}d get value from kvStore failed", status);
281 DistributedKv::Status status = oaidKvStore_->Put(key, value);
282 if (status == DistributedKv::Status::SUCCESS) {
283 OAID_HILOGI(OAID_MODULE_SERVICE, "%{public}d updated to kvStore", status);
285 OAID_HILOGE(OAID_MODULE_SERVICE, "%{public}d update to kvStore failed", status);