Home
last modified time | relevance | path

Searched refs:InternalErrorSource (Results 1 – 2 of 2) sorted by relevance

/external/gsc-utils/rust/explain_ap_ro_verification_status/src/
Dmain.rs20 DigestLocation, InternalErrorSource, SignatureLocation, VerifyError, VerifyErrorCode,
107 if err == VerifyError::Internal(InternalErrorSource::CouldNotDeserialize, 0) { in explain_code()
233 let Some(source) = InternalErrorSource::from_u8(source) else { in explain_code()
239 InternalErrorSource::Kernel => { in explain_code()
263 InternalErrorSource::Crypto => { in explain_code()
269 InternalErrorSource::VerifyFlashRanges => { in explain_code()
272 InternalErrorSource::CouldNotDeserialize => { in explain_code()
/external/gsc-utils/rust/ap_ro_errs/src/
Dlib.rs36 InternalErrorSource::CouldNotDeserialize, in from()
229 Internal(source: InternalErrorSource, code: u16) => {
244 pub enum InternalErrorSource { enum
773 let error = VerifyError::Internal(InternalErrorSource::Crypto, 0x9876); in test_internal()
780 let error = VerifyError::Internal(InternalErrorSource::Kernel, 0x0011); in test_internal()
787 let error = VerifyError::Internal(InternalErrorSource::VerifyFlashRanges, 0x9900); in test_internal()