Lines Matching defs:code
101 code: ErrType,
124 code => {
152 code,
214 ffi::ERR_GET_FUNC(self.code),
222 /// Returns the raw OpenSSL error code for this error.
223 pub fn code(&self) -> ErrType {
224 self.code
230 let cstr = ffi::ERR_lib_error_string(self.code);
245 unsafe { ffi::ERR_GET_LIB(self.code) }
256 let cstr = ffi::ERR_reason_error_string(self.code);
270 unsafe { ffi::ERR_GET_REASON(self.code) }
293 builder.field("code", &self.code());
317 write!(fmt, "error:{:08X}", self.code())?;
324 None => write!(fmt, ":func({})", unsafe { ffi::ERR_GET_FUNC(self.code()) })?,
374 let code = ffi::ERR_get_error_line_data(file, line, data, flags);
375 *func = ffi::ERR_func_error_string(code);
376 code