Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributeddatamgr/preferences/frameworks/native/src/
H A Dpreferences_enhance_impl.cpp69 std::vector<uint8_t> oriKey(key.begin(), key.end()); in Get() local
71 int errCode = db_->Get(oriKey, oriValue); in Get()
95 std::vector<uint8_t> oriKey(key.begin(), key.end()); in HasKey() local
97 int errCode = db_->Get(oriKey, oriValue); in HasKey()
129 std::vector<uint8_t> oriKey(key.begin(), key.end()); in Put() local
130 errCode = db_->Put(oriKey, oriValue); in Put()
155 std::vector<uint8_t> oriKey(key.begin(), key.end()); in Delete() local
156 errCode = db_->Delete(oriKey); in Delete()
307 std::vector<uint8_t> oriKey(key.begin(), key.end()); in GetValue() local
309 errCode = db_->Get(oriKey, oriValue); in GetValue()
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dkvdb_general_store.cpp719 auto oriKey = entries[i].key; in SetDBPushDataInterceptor() local
720 auto newKey = GetNewKey(oriKey, sourceID); in SetDBPushDataInterceptor()
757 auto oriKey = entries[i].key; in SetDBReceiveDataInterceptor() local
758 auto newKey = GetNewKey(oriKey, encyptedUuid); in SetDBReceiveDataInterceptor()
777 std::vector<uint8_t> oriKey(key.begin() + remoteLen, key.end() - UUID_WIDTH); in GetNewKey() local
779 out.insert(out.end(), oriKey.begin(), oriKey.end()); in GetNewKey()