Home
last modified time | relevance | path

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

/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));
58 MOCK_METHOD1(RenameKeyPath, bool(const std::string &keypath));
/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);
63 bool DoRestoreKeyEx(const UserAuth &auth, const std::string &keypath);
96 bool DoRestoreKey(const UserAuth &auth, const std::string &keypath);
99 bool DoRestoreKeyOld(const UserAuth &auth, 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() argument
69 return IBaseKeyMoc::baseKeyMoc->UpdateKey(keypath); in UpdateKey()
/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() argument
364 auto candidate = keypath.empty() ? GetCandidateDir() : keypath; in StoreKey()