Home
last modified time | relevance | path

Searched refs:doesKeyExist (Results 1 – 5 of 5) sorted by relevance

/system/security/keystore/include/keystore/
Dkeystore_client_mock.h78 MOCK_METHOD1(doesKeyExist, bool(const std::string& key_name));
Dkeystore_client.h172 virtual bool doesKeyExist(const std::string& key_name) = 0;
Dkeystore_client_impl.h84 bool doesKeyExist(const std::string& key_name) override;
/system/security/keystore/
Dkeystore_client_impl.cpp431 bool KeystoreClientImpl::doesKeyExist(const std::string& key_name) { in doesKeyExist() function in keystore::KeystoreClientImpl
471 bool key_exists = doesKeyExist(key_name); in createOrVerifyEncryptionKey()
510 bool key_exists = doesKeyExist(key_name); in createOrVerifyAuthenticationKey()
Dkeystore_cli_v2.cpp359 printf("DoesKeyExist: %s\n", keystore->doesKeyExist(name) ? "yes" : "no"); in DoesKeyExist()