Lines Matching +full:libressl +full:-
43 pub fn get() -> ErrorStack { in get()
61 pub fn errors(&self) -> &[Error] { in errors()
67 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
87 fn from(e: ErrorStack) -> io::Error { in from()
93 fn from(_: ErrorStack) -> fmt::Error { in from()
113 pub fn get() -> Option<Error> { in get()
223 pub fn code(&self) -> ErrType { in code()
228 pub fn library(&self) -> Option<&'static str> { in library()
242 // OpenSSL/LibreSSL they're safe.
244 pub fn library_code(&self) -> libc::c_int { in library_code()
249 pub fn function(&self) -> Option<RetStr<'_>> { in function()
254 pub fn reason(&self) -> Option<&'static str> { in reason()
267 // OpenSSL/LibreSSL they're safe.
269 pub fn reason_code(&self) -> libc::c_int { in reason_code()
274 pub fn file(&self) -> RetStr<'_> { in file()
279 pub fn line(&self) -> u32 { in line()
285 pub fn data(&self) -> Option<&str> { in data()
291 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
314 // OpenSSL/LibreSSL they're safe.
316 fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt()
353 unsafe fn new(s: *const c_char) -> Self {
357 fn as_ptr(&self) -> *const c_char {
361 fn as_str(&self) -> &str {
373 ) -> ErrType {
385 unsafe fn new(s: *const c_char) -> Self {
389 fn as_ptr(&self) -> *const c_char {
393 fn as_str(&self) -> &'static str {
411 let stack = Nid::create("not-an-oid", "invalid", "invalid").unwrap_err(); in test_error_library_code()