Home
last modified time | relevance | path

Searched refs:dbEntry (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/
H A Dstore_result_set.cpp172 DBEntry dbEntry; in GetEntry() local
173 auto dbStatus = impl_->GetEntry(dbEntry); in GetEntry()
180 entry.key = convert_.ToKey(std::move(dbEntry.key), deviceId); in GetEntry()
181 entry.value = std::move(dbEntry.value); in GetEntry()
H A Dobserver_bridge.cpp123 for (const auto &dbEntry : dbEntries) { in ConvertDB() local
125 entry.key = convert.ToKey(DBKey(dbEntry.key), deviceId); in ConvertDB()
126 entry.value = dbEntry.value; in ConvertDB()
H A Dsingle_store_impl.cpp125 DBEntry dbEntry; in PutBatch() local
126 dbEntry.key = convertor_.ToLocalDBKey(entry.key); in PutBatch()
127 if (dbEntry.key.empty() || entry.value.Size() > MAX_VALUE_LENGTH) { in PutBatch()
132 dbEntry.value = entry.value; in PutBatch()
133 dbEntries.push_back(std::move(dbEntry)); in PutBatch()
475 for (auto &dbEntry : dbEntries) { in GetDeviceEntries() local
477 entry.key = convertor_.ToKey(std::move(dbEntry.key), devId); in GetDeviceEntries()
478 entry.value = std::move(dbEntry.value); in GetDeviceEntries()
901 for (auto &dbEntry : dbEntries) { in GetEntries() local
903 entry.key = convertor_.ToKey(std::move(dbEntry.key), deviceId); in GetEntries()
[all …]
/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/
H A Dsingle_store_impl.cpp69 DBEntry dbEntry; in PutBatch() local
70 dbEntry.key = convertor_.ToLocalDBKey(entry.key); in PutBatch()
71 if (dbEntry.key.empty() || entry.value.Size() > MAX_VALUE_LENGTH) { in PutBatch()
76 dbEntry.value = entry.value; in PutBatch()
77 dbEntries.push_back(std::move(dbEntry)); in PutBatch()
423 for (auto &dbEntry : dbEntries) { in GetEntries() local
425 entry.key = convertor_.ToKey(std::move(dbEntry.key), deviceId); in GetEntries()
426 entry.value = std::move(dbEntry.value); in GetEntries()