Searched refs:InternalError (Results 1 – 5 of 5) sorted by relevance
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ssl/ |
H A D | error.rs | 27 pub(crate) internal: Option<InternalError>, 31 pub(crate) enum InternalError { enum 44 Some(InternalError::Io(e)) => Ok(e), in into_io_error() 51 Some(InternalError::Io(ref e)) => Some(e), in get_io_error() 60 Some(InternalError::Io(ref e)) => Some(e), in source() 61 Some(InternalError::Ssl(ref e)) => Some(e), in source() 62 Some(InternalError::User(ref e)) => Some(e), in source() 213 internal: Some(InternalError::Io(io::Error::from( in ut_ssl_error_into_io_error() 236 internal: Some(InternalError::Io(io::Error::from( in ut_ssl_error_source() 270 internal: Some(InternalError::Io(io::Error::from( in ut_ssl_error_fmt() [all …]
|
H A D | stream.rs | 23 use super::{InternalError, Ssl, SslError, SslErrorCode, SslRef}; 51 Some(InternalError::Ssl(e)) in get_error() 56 self.get_bio_error().map(InternalError::Io) in get_error() 58 Some(InternalError::Ssl(error)) in get_error() 62 self.get_bio_error().map(InternalError::Io) in get_error() 275 internal: Some(InternalError::Ssl(ErrorStack::get())), in verify_server_cert() 284 internal: Some(InternalError::Ssl(ErrorStack::get())), in verify_server_cert() 294 internal: Some(InternalError::Ssl(ErrorStack::get())), in verify_server_cert() 351 internal: Some(InternalError::User(VerifyError::from_msg( in compare_pinned_digest()
|
H A D | mod.rs | 23 pub(crate) use error::{InternalError, SslError, SslErrorCode};
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/verify/ |
H A D | pinning.rs | 24 use crate::util::c_openssl::ssl::{InternalError, SslError, SslErrorCode}; 181 internal: Some(InternalError::Ssl(ErrorStack::get())), in sha256_digest() 189 internal: Some(InternalError::Ssl(ErrorStack::get())), in sha256_digest()
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/ |
H A D | encoder.rs | 31 InternalError, enumerator 456 return Err(FrameEncoderErr::InternalError); in iterate_headers_header() 602 return Err(FrameEncoderErr::InternalError); in iterate_data_header() 720 return Err(FrameEncoderErr::InternalError); in iterate_goaway_header() 775 return Err(FrameEncoderErr::InternalError); in iterate_goaway_payload() 843 return Err(FrameEncoderErr::InternalError); in iterate_window_update_header() 939 return Err(FrameEncoderErr::InternalError); in iterate_settings_header() 1001 return Err(FrameEncoderErr::InternalError); in iterate_settings_payload() 1062 return Err(FrameEncoderErr::InternalError); in iterate_priority_header() 1120 return Err(FrameEncoderErr::InternalError); in iterate_priority_payload() [all …]
|