Home
last modified time | relevance | path

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

/system/security/keystore/include/keystore/
Dkeystore.h37 KEY_NOT_FOUND = 7, enumerator
/system/security/keystore/
DKeyStore.cpp362 if (!lockedEntry) return rc = ResponseCode::KEY_NOT_FOUND, std::move(result); in getKeyForName()
367 if (keyBlob.getType() != type) return rc = ResponseCode::KEY_NOT_FOUND, std::move(result); in getKeyForName()
Dkey_store_service.cpp225 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND); in del()
246 static_cast<int32_t>(lockedEntry ? ResponseCode::NO_ERROR : ResponseCode::KEY_NOT_FOUND); in exist()
542 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND); in ungrant()
Dblob.cpp394 return (errno == ENOENT) ? ResponseCode::KEY_NOT_FOUND : ResponseCode::SYSTEM_ERROR; in readBlob()