Home
last modified time | relevance | path

Searched refs:UpdateKey (Results 1 – 25 of 34) sorted by relevance

12

/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/mock/
H A Dbase_key_mock.h33 virtual bool UpdateKey(const std::string &keypath) = 0;
52 MOCK_METHOD1(UpdateKey, bool(const std::string &keypath));
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/mock/
H A Dbase_key_mock.cpp64 bool BaseKey::UpdateKey(const std::string &keypath, bool needSyncCandidate) in UpdateKey() function in BaseKey
69 return IBaseKeyMoc::baseKeyMoc->UpdateKey(keypath); in UpdateKey()
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/
H A Dcrypto_key_test.cpp230 EXPECT_FALSE(g_testKeyV1BadDir.UpdateKey());
276 EXPECT_TRUE(g_testKeyV2->UpdateKey());
317 g_testKeyV1->UpdateKey();
326 EXPECT_TRUE(g_testKeyV1->UpdateKey());
483 EXPECT_TRUE(g_testKeyV2->UpdateKey());
681 g_testKeyV1->UpdateKey();
709 EXPECT_TRUE(g_testKeyV1->UpdateKey());
797 EXPECT_FALSE(g_testKeyV1->UpdateKey());
801 EXPECT_FALSE(g_testKeyV1->UpdateKey());
819 EXPECT_FALSE(g_testKeyV1->UpdateKey());
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/
H A Dintf_ecs_animation.h67 …virtual void UpdateKey(IEcsTrackAnimation::Ptr track, uint32_t oldKeyIndex, uint32_t newKeyIndex, …
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/src/
H A Dbase_key.cpp357 bool BaseKey::UpdateKey(const std::string &keypath, bool needSyncCandidate) in StoreKey() function in OHOS::StorageDaemon::BaseKey
492 UpdateKey("", needSyncCandidate); in StoreKey()
512 UpdateKey(it, needSyncCandidate); in StoreKey()
553 if (!UpdateKey()) { in StoreKey()
721 if (!UpdateKey()) { in StoreKey()
H A Dfscrypt_key_v1.cpp239 UpdateKey("", needSyncCandidate); in DoDecryptClassE()
259 UpdateKey(it, needSyncCandidate); in DoDecryptClassE()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/gaussdb_rd/
H A Drd_single_ver_natural_store_connection.h99 int UpdateKey(const UpdateKeyCallback &callback) override;
H A Drd_single_ver_storage_executor.h197 int UpdateKey(const UpdateKeyCallback &callback);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/kv/
H A Dgeneric_kvdb_connection.h82 int UpdateKey(const UpdateKeyCallback &callback) override;
H A Dgeneric_kvdb_connection.cpp364 int GenericKvDBConnection::UpdateKey(const UpdateKeyCallback &callback) in UpdateKey() function in DistributedDB::GenericKvDBConnection
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/include/
H A Dikvdb_connection.h139 virtual int UpdateKey(const UpdateKeyCallback &callback) = 0;
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/kvdb/
H A Dupgrade.cpp113 auto dbStatus = kvStore->UpdateKey([uuid](const DBKey &originKey, DBKey &newKey) { in UpdateUuid()
/ohos5.0/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/mock/
H A Dkv_store_nb_delegate_mock.h93 DBStatus UpdateKey(const UpdateKeyCallback &callback);
H A Dkv_store_nb_delegate_mock.cpp248 DBStatus KvStoreNbDelegateMock::UpdateKey(const UpdateKeyCallback &callback) in UpdateKey() function in DistributedDB::KvStoreNbDelegateMock
H A Ddb_store_mock.h100 DBStatus UpdateKey(const UpdateKeyCallback &callback) override;
H A Ddb_store_mock.cpp309 DBStatus DBStoreMock::UpdateKey(const UpdateKeyCallback &callback) in UpdateKey() function in OHOS::DistributedData::DBStoreMock
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/include/crypto/
H A Dbase_key.h48 bool UpdateKey(const std::string &keypath = "", bool needSyncCandidate = true);
/ohos5.0/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/key_manager_test/
H A Dkey_manager_test.cpp183 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(true));
484 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(false));
488 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(true));
684 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(true));
701 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(true));
728 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(true));
743 EXPECT_CALL(*baseKeyMock_, UpdateKey(_)).WillOnce(Return(true));
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H A Ddistributeddb_interfaces_nb_delegate_test.cpp2674 g_kvNbDelegatePtr->UpdateKey([](const Key &originKey, Key &newKey) { in __anon195527440f02()
2720 g_kvNbDelegatePtr->UpdateKey([](const Key &originKey, Key &newKey) { in __anon195527441002()
2741 g_kvNbDelegatePtr->UpdateKey([](const Key &originKey, Key &newKey) { in __anon195527441102()
2785 EXPECT_EQ(g_kvNbDelegatePtr->UpdateKey(nullptr), INVALID_ARGS);
2786 DBStatus status = g_kvNbDelegatePtr->UpdateKey([](const Key &originKey, Key &newKey) { in __anon195527441202()
2790 status = g_kvNbDelegatePtr->UpdateKey([](const Key &originKey, Key &newKey) { in __anon195527441302()
2794 status = g_kvNbDelegatePtr->UpdateKey([](const Key &originKey, Key &newKey) { in __anon195527441402()
3144 EXPECT_EQ(kvStoreImpl->UpdateKey(nullptr), DB_ERROR);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_single_ver_natural_store_connection.h105 int UpdateKey(const UpdateKeyCallback &callback) override;
H A Dsqlite_single_ver_storage_executor.h188 int UpdateKey(const UpdateKeyCallback &callback);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/
H A Dkv_store_nb_delegate.h240 DB_API virtual DBStatus UpdateKey(const UpdateKeyCallback &callback) = 0;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/
H A Dkv_store_nb_delegate_impl.h160 DBStatus UpdateKey(const UpdateKeyCallback &callback) override;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/nbdelegate_fuzzer/
H A Dnbdelegate_fuzzer.cpp170 kvNbDelegatePtr->UpdateKey([](const Key &origin, Key &newKey) { in TestCRUD()
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Decs_animation.h264 …void UpdateKey(IEcsTrackAnimation::Ptr track, uint32_t oldKeyIndex, uint32_t newKeyIndex, float ti…

12