Home
last modified time | relevance | path

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

/system/bt/btif/src/
Dbtif_keystore.cc46 if (!keystore_client_->doesKeyExist(kKeyStore)) { in Encrypt()
102 return keystore_client_->doesKeyExist(kKeyStore); in DoesKeyExist()
/system/security/keystore/include/keystore/
Dkeystore_client_mock.h78 MOCK_METHOD1(doesKeyExist, bool(const std::string& key_name));
Dkeystore_client.h170 virtual bool doesKeyExist(const std::string& key_name) = 0;
Dkeystore_client_impl.h82 bool doesKeyExist(const std::string& key_name) override;
/system/security/keystore/
Dkeystore_client_impl.cpp434 bool KeystoreClientImpl::doesKeyExist(const std::string& key_name) { in doesKeyExist() function in keystore::KeystoreClientImpl
461 bool key_exists = doesKeyExist(key_name); in createOrVerifyEncryptionKey()
500 bool key_exists = doesKeyExist(key_name); in createOrVerifyAuthenticationKey()
Dkeystore_cli_v2.cpp359 printf("DoesKeyExist: %s\n", keystore->doesKeyExist(name) ? "yes" : "no"); in DoesKeyExist()