Home
last modified time | relevance | path

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

/aosp_15_r20/system/security/keystore2/src/
H A Derror.rs31 …y_rkp_aidl::aidl::android::security::rkp::IGetKeyCallback::ErrorCode::ErrorCode as GetKeyErrorCode;
83 GetKeyErrorCode::ERROR_UNKNOWN => ResponseCode::OUT_OF_KEYS_TRANSIENT_ERROR, in from()
84 GetKeyErrorCode::ERROR_PERMANENT => ResponseCode::OUT_OF_KEYS_PERMANENT_ERROR, in from()
85 GetKeyErrorCode::ERROR_PENDING_INTERNET_CONNECTIVITY => { in from()
88 GetKeyErrorCode::ERROR_REQUIRES_SECURITY_PATCH => { in from()
/aosp_15_r20/system/security/keystore2/src/error/
H A Dtests.rs195 RkpdError::GetKeyFailed(GetKeyErrorCode::ERROR_UNKNOWN), in rkpd_error_is_in_sync_with_response_code()
199 RkpdError::GetKeyFailed(GetKeyErrorCode::ERROR_PERMANENT), in rkpd_error_is_in_sync_with_response_code()
203 RkpdError::GetKeyFailed(GetKeyErrorCode::ERROR_PENDING_INTERNET_CONNECTIVITY), in rkpd_error_is_in_sync_with_response_code()
207 RkpdError::GetKeyFailed(GetKeyErrorCode::ERROR_REQUIRES_SECURITY_PATCH), in rkpd_error_is_in_sync_with_response_code()
/aosp_15_r20/system/security/keystore2/rkpd_client/src/
H A Dlib.rs18 IGetKeyCallback::BnGetKeyCallback, IGetKeyCallback::ErrorCode::ErrorCode as GetKeyErrorCode,
56 GetKeyFailed(GetKeyErrorCode),
192 fn onError(&self, error: GetKeyErrorCode, description: &str) -> binder::Result<()> { in onError() argument
H A Dtests.rs179 for get_key_error in GetKeyErrorCode::enum_values() { in test_get_key_cb_error()