Lines Matching refs:LockedKeyBlobEntry

102 LockedKeyBlobEntry KeyStore::getLockedBlobEntryIfNotExists(const std::string& alias, uid_t uid) {  in getLockedBlobEntryIfNotExists()
104 auto result = LockedKeyBlobEntry::get(std::move(kbe)); in getLockedBlobEntryIfNotExists()
128 LockedKeyBlobEntry KeyStore::getLockedBlobEntryIfExists(const std::string& alias, uid_t uid) { in getLockedBlobEntryIfExists()
131 LockedKeyBlobEntry lockedentry = LockedKeyBlobEntry::get(std::move(*blobentry)); in getLockedBlobEntryIfExists()
150 std::list<LockedKeyBlobEntry> matches; in resetUser()
154 std::tie(rc, matches) = LockedKeyBlobEntry::list(userDirName); in resetUser()
159 for (LockedKeyBlobEntry& lockedEntry : matches) { in resetUser()
221 std::list<LockedKeyBlobEntry> matches; in isEmpty()
225 std::tie(rc, matches) = LockedKeyBlobEntry::list(userDirName); in isEmpty()
236 static void maybeLogKeyIntegrityViolation(const LockedKeyBlobEntry& lockedEntry, in maybeLogKeyIntegrityViolation()
242 std::tuple<ResponseCode, Blob, Blob> KeyStore::get(const LockedKeyBlobEntry& blobfile) { in get()
283 ResponseCode KeyStore::put(const LockedKeyBlobEntry& blobfile, Blob keyBlob, in put()
290 ResponseCode KeyStore::del(const LockedKeyBlobEntry& blobfile) { in del()
330 std::string KeyStore::addGrant(const LockedKeyBlobEntry& blobfile, uid_t granteeUid) { in addGrant()
334 bool KeyStore::removeGrant(const LockedKeyBlobEntry& blobfile, const uid_t granteeUid) { in removeGrant()
355 std::tuple<ResponseCode, Blob, Blob, LockedKeyBlobEntry>
357 std::tuple<ResponseCode, Blob, Blob, LockedKeyBlobEntry> result; in getKeyForName()